
March 22nd, 2003, 02:24 PM
|
 |
meester luva luva
|
|
|
|
|
changing time locale.....
Ok,
I am using
<%
Locale = Session.LCID
Session.LCID = &H1033
Response.Write FormatDateTime(Time)
Session.LCID = Locale
%>
as I am hosted on a US server, but I need to display the time in GMT. This code still displays the server time though. Would it be better to just display <%=Time()%> and then knock 5 hours off the US time? If so, would <%Time(-5)%> work?
|