How to format to Swedish date format

July 14, 2004 by Bryan Hornung

If you can run a global.asa file on your server then place the following into your global.asa file to change the locale settings throughout your site:

<%
'When a session starts on the server the following code will be run
Sub Session_OnStart

     'Set the server locale

     Session.LCID = 1053

End Sub
%>

If you can not use a global.asa file, place following into the top of each ASP page you wish to change the locale settings on:

<%
'Set the server locale

Session.LCID = 1053
%>

Let me know how you make out

Thanks
Bryan Hornung
www.xactdesign.com