asp教程:ASP Session 對象簡單簡介
Session對象是用來儲存的資訊,或更改設定的一個使用者會議。變數儲存在Session對象舉辦資訊單一使用者,並提供給所有的網頁在一個應用程式。
下面來看一個簡單的執行個體吧.
<html>
<body>
<%
response.write("<p>")
response.write("The default LCID for this page is: " & Session.LCID & "<br />")
response.write("The Date format for the above LCID is: " & date() & "<br />")
response.write("The Currency format for the above LCID is: " & FormatCurrency(350))
response.write("</p>")
Session.LCID=1036
response.write("<p>")
response.write("The LCID is now changed to: " & Session.LCID & "<br />")
response.write("The Date format for the above LCID is: " & date() & "<br />")
response.write("The Currency format for the above LCID is: " & FormatCurrency(350))
response.write("</p>")
Session.LCID = 3079
response.write("<p>")
response.write("The LCID is now changed to: " & Session.LCID & "<br />")
response.write("The Date format for the above LCID is: " & date() & "<br />")
response.write("The Currency format for the above LCID is: " & FormatCurrency(350))
response.write("</p>")
Session.LCID = 2057
response.write("<p>")
response.write("The LCID is now changed to: " & Session.LCID & "<br />")
response.write("The Date format for the above LCID is: " & date() & "<br />")
response.write("The Currency format for the above LCID is: " & FormatCurrency(350))
response.write("</p>")
%>
</body>
</html>
輸出的結果為.
The default LCID for this page is: 1033
The Date format for the above LCID is: 10/31/2008
The Currency format for the above LCID is: $350.00
The LCID is now changed to: 1036
The Date format for the above LCID is: 31/10/2008
The Currency format for the above LCID is: 350,00 €
The LCID is now changed to: 3079
The Date format for the above LCID is: 31.10.2008
The Currency format for the above LCID is: € 350,00
The LCID is now changed to: 2057
The Date format for the above LCID is: 31/10/2008
The Currency format for the above LCID is: ?50.00
轉載請註明來自http://www.111cn.net/asp/asp.html