In asp.net I'm using this one:

System.Globalization.CultureInfo.CurrentCulture.DateTimeFormat.ShortDatePattern

Is that possible to get it in classic asp?

link|improve this question

65% accept rate
feedback

2 Answers

It's a while since I used VBScript but I think that combining FormatDateTime with the correct locale should give you a localised date. You can use SetLocale() to change the locale the script is using, that might be particularly necessary if you want to use the client locale rather than the server one. The actual options formatDateTime offers are pretty limited though - more or less vbShortDate or vbLongDate.

If you need more flexibility you will either need to roll your own or perhaps to use a standard format to pass the date to the client and then format it there using JavaScript which may open up a few options for you.

link|improve this answer
feedback

Use this VB Script Function

Response.write(formatDateTime(Now(), vbShortDate))

EDIT:

Better try from client side check this link

http://www.merlyn.demon.co.uk/js-other.htm#Deloc

link|improve this answer
no, it bring me a date, what what I need, that function will return string (DatePattern) like: mm/dd/yyyy for en-US and dd/mm/yyyy for en-CA – msony Feb 9 '10 at 10:58
YOU HAVE TO USE GetLocale() TO IDENTIFY THE LOCATION AND THEN YOU HAVE TO FORMAT THE DATE ACCORDINGLY. THERE IS NO GO OTHER THAN THIS. – solairaja Feb 9 '10 at 11:14
check the edits – solairaja Feb 9 '10 at 11:26
but I what that culture will stay at server side – msony Feb 9 '10 at 11:50
still you can use the culture information using clientscripts – solairaja Feb 9 '10 at 12:04
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.