一、使用 Contents 集合保存會話信息
1、Contents 集合是使用 Session 對象定義的在 ASP 應用程序中的一組變量。這些變量的作用域為用戶層,並且在整個 ASP 應用程序中都是可用的。這是Session 對象默認的集合,因此下述兩種格式是等價的:
Session.Contents("變量名")
Session("變量名")
其中,“變量名”是需要操作的 Session 變量名稱。
2、實例代碼(1.asp):使用 Session 對象編寫一個簡單的計數器程序。
<html>
<head><title>使用 Session 變量</title></head>
<body>
<center>
<p>使用 Session 變量<p>
</center>
<%
Session.Contents("counter")=Session.Contents("counter")+1
%>
<center>
<font size=6 face=方正舒體 color=blue>
您是第<%=Session.Contents("counter")%>次來訪!
</font>
</center>
</body>
</html>
二、使用StaticObjects 集合保存會話信息
StaticObjects 集合包含 Session 對象中用 OBJECT 標記創建的所有對象。
1、StaticOBjects 集合的語法格式:
Session.StaticObjects(key)其中參數 Key 指定要檢索的屬性。2、創建具有會話作用域的對象:
在 global.asa 文件中,使用 OBJECT 標記並將 SCOPE 屬性設置為 “Session" 可以創建有會話作用域的對象。例如:
<OBJECT RUNAT=”Server" SCOPE="Session" ID=名稱 PROGID=類名></OBJECT>
3、使用 For Each ...Next 語句遍歷 StaticObjects 集合中的每一個對象
StaticObjects 集合可以用於確定對象特定屬性的值,或者用於遍歷集合並獲取所有對象的全部屬性。使用循環控制結構可以遍歷 StaticObjects 集合中的關鍵字。腳本如下:
<%
For Each objprop in Session.StaticObjects
Response.Write objprop & ":" & Session.StaticObjects(objprop) & "<br>"
Next
%>
4、不能在Session 對象中存儲內建對象。例如,下面每一行腳本都將返回錯誤。
<%
set session("varl")=Session
set session("var2")=Request
set Session("var3")=Response
set Session("var4")=Server
set Session("var5")Application
%>