You can set the Local ID on a specific webpage, and it should return the date in that specific Local settings. You do this through the session object. I haven't tested this much, so I don't know how reliable this is.
<% Session.LCID = 0809 'Hex value for the UK %>
That technically should work too, but again, I'd test it. %>
VBScript normally returns dates formatted to the settings on whatever server it is on. If you want to be really sure that it formats it a different way, you could build your own date using Day(date), Month(date), and Year(date) to build a string.
Say I wanted to format my date like so DD/MM/YYYY
I'd do this:
<% response.write Day(date) & "/" & Month(date) & "/" & Year(date) %>
That way, you always know for a fact how the date is displayed in your page.
Hope that helps you. Harold Blackorby
hblackorby@scoreinteractive.com
St. Louis, MO