Click to See Complete Forum and Search --> : Re: Different dateformat - Session.LCID = xxxx or <%@ LCID = xxxx %>


Ilkka Paloheimo
01-10-2001, 04:41 AM
You need to have Sweden set as *system default locale* in IIS server control
panel regional settings. Otherwise US settings are used (on an English NT).
NT and IIS use locale settings from the user who has logged to the server
console. If nobody has logged in on the console, then system default is used.

You can override this behavior by setting LCID (locale ID) on every ASP page.
Either with Session.LCID property or LCID directive. See ASP documentation.

Session.LCID = 1035 sets the locale to Finland, now you need to find out
what the locale ID of Sweden is...

Good luck

Ilkka