hi,
i have just tried a web app i am writing on another machine than my test machine and in the WebDateChooser, the day and the month are the wrong way around to that of the development machine - which means all my dates are screwed up.
is there a way to force the format for the WebDateChooser to, in my case, United Kingdom or dd/mm/yyyy
thanks.
onan.
The WebDateChooser control determines what date format to use by listening to the Culture set on the page, so if you want to explicitly set that you can either add the Culture attribute in your pages @Page directive, or set it in code:
Thread.CurrentThread.CurrentCulture = new CultureInfo(“en-GB”);
Devin