設置並返回LCID
本例演示"LCID"屬性。此屬性設置並返回一個指明位置或者地區的整數。類似於日期、時間以及貨幣等內容都要根據位置或者地區來顯示。
看到本信息說明該文是通過網頁教學(www.webjx.com)整理發布的,請不要刪掉!
本示例代碼如下:
<html>
<body>
<%
Response.Write(Session.SessionID)
%>
</body>
</html>
本實例運行結果如下:
20047339
返回SessionID
本例演示"SessionID"屬性。該屬性為每位用戶返回一個唯一的id。這個id由服務器生成。
本示例代碼如下:
<html>
<body>
<%
response.write("<p>")
response.write("默認 Timeout 是:" & Session.Timeout & " 分鐘。")
response.write("</p>")
Session.Timeout=30
response.write("<p>")
response.write("現在的 Timeout 是 " & Session.Timeout & " 分鐘。")
response.write("</p>")
%>
</body>
</html>
本實例運行結果如下:
默認 Timeout 是:20 分鐘。
現在的 Timeout 是 30 分鐘。
session的超時
本例演示"Timeout"屬性。這個例子設置並返回session的超時時間(分鐘)。
加此信息網頁教學網(www.webjx.com)發布目的是為了防止你變懶!webjx.com不主張采集!
本示例代碼如下:
<html>
<body>
<%
response.write("<p>")
response.write("默認 Timeout 是:" & Session.Timeout & " 分鐘。")
response.write("</p>")
Session.Timeout=30
response.write("<p>")
response.write("現在的 Timeout 是 " & Session.Timeout & " 分鐘。")
response.write("</p>")
%>
</body>
</html>
本實例運行結果如下:
默認 Timeout 是:30 分鐘。
現在的 Timeout 是 30 分鐘。