The problem seem to be related to current Session.LCID

February 1, 2002 by Ronny Hofsoy

Try to set session.LCID to 1044 (US) at the top of the page and back to your favourite LCID at the bottom.

<% Session.LCID = 1044 %>

Your asp here....

Your html here...

<% Session.LCID = 1044 %>

It has been tested on several hosts and it was possible to recreate the problem.

LCID is beeing used to set the Default Locale on the server as per session

RE: The problem seem to be related to current Session.LCID

February 2, 2002 by George Petrov
Thanks! Good testing indeed! I will see how can I solve this further