ASP Contents 集合
完整的 Session 對(duì)象參考手冊(cè)
Contents 集合包含著通過(guò)腳本命令添加到 application/session 的所有項(xiàng)目。
提示:要從 Contents 集合中刪除項(xiàng)目,請(qǐng)使用 Remove 和 RemoveAll 方法。
語(yǔ)法
Application.Contents(Key)
Session.Contents(Key)
參數(shù) | 描述 |
key | 必需。要取回的項(xiàng)目的名稱(chēng)。 |
針對(duì) Application 對(duì)象的實(shí)例
實(shí)例 1
請(qǐng)注意,name 和 objtest 都會(huì)被追加到 Contents 集合中:
<%
Application("name")="W3CSchool"
Set Application("objtest")=Server.CreateObject("ADODB.Connection")
%>
實(shí)例 2
遍歷 Contents 集合:
<%
for each x in Application.Contents
??Response.Write(x & "=" & Application.Contents(x) & "<br>")
next
%>
或者:
<%
For i=1 to Application.Contents.Count
??Response.Write(i & "=" & Application.Contents(i) & "<br>")
Next
%>
實(shí)例 3
<%
Application("date")="2001/05/05"
Application("author")="W3CSchool"
for each x in Application.Contents
??Response.Write(x & "=" & Application.Contents(x) & "<br>")
next
%>
輸出:
date=2001/05/05
author=W3CSchool
針對(duì) Session 對(duì)象的實(shí)例
實(shí)例 1
請(qǐng)注意,name 和 objtest 都會(huì)被追加到 Contents 集合中:
<%
Session("name")="Hege"
Set Session("objtest")=Server.CreateObject("ADODB.Connection")
%>
實(shí)例 2
遍歷 Contents 集合:
<%
for each x in Session.Contents
??Response.Write(x & "=" & Session.Contents(x) & "<br>")
next
%>
或者:
<%
For i=1 to Session.Contents.Count
??Response.Write(i & "=" & Session.Contents(i) & "<br>")
Next
%>
實(shí)例 3
<%
Session("name")="Hege"
Session("date")="2001/05/05"
for each x in Session.Contents
??Response.Write(x & "=" & Session.Contents(x) & "<br>")
next
%>
輸出:
name=Hege
date=2001/05/05
完整的 Session 對(duì)象參考手冊(cè)
更多建議: