Source Code for test.asp
COLOR LEGEND
| | Server Side Script |
| | Client Side Script |
| | Hyperlink |
| | Include |
| | Frames |
| | Comments |
| | Object Code Link |
| | Standard HTML and Text |
<%@ LANGUAGE="VBSCRIPT"%>
<!--#INCLUDE file="lcid.asp"-->
<HTML>
<HEAD>
<TITLE>LCID usage</TITLE>
</HEAD>
<BODY BGCOLOR=#ffffff>
<%
Session.LCID = MAKELCID(MAKELANGID(LANG_ENGLISH, SUBLANG_ENGLISH_US),SORT_DEFAULT)
Response.Write "LCID: " & Session.Lcid & " "
%>
<%=Now()%><P>
<%
Session.LCID = MAKELCID(MAKELANGID(LANG_GERMAN, SUBLANG_GERMAN_AUSTRIAN),SORT_DEFAULT)
Response.Write "LCID: " & Session.Lcid & " "
%>
<%=Now()%>
</BODY>
</HTML>