<%
response.write("")
response.write("The default LCID for this page is: " & Session.LCID & "
")
response.write("The Date format for the above LCID is: " & date() & "
")
response.write("The Currency format for the above LCID is: " & FormatCurrency(350))
response.write("
")
Session.LCID=1036
response.write("")
response.write("The LCID is now changed to: " & Session.LCID & "
")
response.write("The Date format for the above LCID is: " & date() & "
")
response.write("The Currency format for the above LCID is: " & FormatCurrency(350))
response.write("
")
Session.LCID = 3079
response.write("")
response.write("The LCID is now changed to: " & Session.LCID & "
")
response.write("The Date format for the above LCID is: " & date() & "
")
response.write("The Currency format for the above LCID is: " & FormatCurrency(350))
response.write("
")
Session.LCID = 2057
response.write("")
response.write("The LCID is now changed to: " & Session.LCID & "
")
response.write("The Date format for the above LCID is: " & date() & "
")
response.write("The Currency format for the above LCID is: " & FormatCurrency(350))
response.write("
")
%>