Code Comments
Programming Forum and web based access to our favorite programming groups.After moving a small web app to Win2k3 / IIS 6 the date is being displayed as DDMMYYYY, rather than MMDDYYYY. Can I change something in the regional settings to correct this? Or do I have to change the source?
Post Follow-up to this messageYou have to format the date manually to get what you want. Like this ... myDate = day(Date()) & "-" & month(Date()) & "-" & year(Date())
Post Follow-up to this messageJohn Smith wrote: > After moving a small web app to Win2k3 / IIS 6 the date is being > displayed as DDMMYYYY, rather than MMDDYYYY. Can I change something in > the regional settings to correct this? Or do I have to change the > source? http://www.aspfaq.com/show.asp?id=2313 vbscript http://www.aspfaq.com/show.asp?id=2040 help with dates http://www.aspfaq.com/show.asp?id=2260 dd/mm/yyy confusion Bob Barrows -- Microsoft MVP - ASP/ASP.NET Please reply to the newsgroup. This email account is my spam trap so I don't check it very often. If you must reply off-line, then remove the "NO SPAM"
Post Follow-up to this messagePowered by vBulletin
Copyright 2000-2006 Jelsoft Enterprises Limited.