asp列出服務器變量

<%@ LANGUAGE="VBSCRIPT" codepage=936%>
<%
'2:16 2004-10-9
'#####################################################
'Function:
' List server Session variable & Application variable
'Memo: Be care for diffrent virtul path show diffrent Session
'#####################################################
%>
<table border="2" cellspacing="1" bordercolor="#800000" width="100%" id="AutoNumber1" bordercolorlight="#808080" bordercolordark="#FFFFFF" height="37" bgcolor="#D6D3CE">
<%
Dim sessitem


response.write "SessionID: " & Session.SessionID & "<br>"
response.write "List of " & Session.Contents.Count & " items in Session contents collection: "


intItem=1
For Each sessitem in Session.Contents
response.write "<tr>"
If IsObject(Session.Contents(sessitem)) Then
Response.Write "<td>"&CStr(intItem) & "</td>"
Response.Write "<td>"&sessitem& "</td>"
Response.Write "<td>"&"Session object"& "</td>"
Else
If IsArray(Session.Contents(sessitem)) Then
Response.Write "<td>"&CStr(intItem) & "</td>"
Response.Write "<td>"&"Array Object "& "</td>" & "<td>"

For each objArray in Session.Contents(sessitem)
Response.Write "***;"
Next
Response.Write "</td>"

Else
Response.Write "<td>"& intItem  & "</td>"
Response.Write "<td>"& sessitem & "</td>"
Response.Write "<td>"& Session.Contents(sessitem) &"</td>"
End If
End If
response.write "</tr>"
intItem=intItem+1
Next

%>
</table>

<br>
<hr>
LIST Application

<hr>
<table border="2" cellspacing="1" bordercolor="#800000" width="100%" id="AutoNumber1" bordercolorlight="#808080" bordercolordark="#FFFFFF" height="37" bgcolor="#D6D3CE">
<%

intItem=1
For Each Key in Application.Contents

Response.Write "<tr>"
If IsObject(Application.Contents(intItem)) Then

Response.Write "<td>"&intItem & "</td>"
Response.Write "<td>"&Key & "</td>"
Response.Write "<td>"&"Object" & "</td>"

Else
Response.Write "<td>"&intItem & "</td>"
Response.Write "<td>"&Key& "</td>"
Response.Write "<td>"&Application.Contents(cstr(intItem))& "</td>"
End If
intItem=intItem+1
Response.Write "</tr>"

Next

%>
</table> 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章