列出所有的Session变量

<%@ Language=VBScript %>

<% Option Explicit %>

<%

Response.Write "在你的程序中一共使用了 " & Session.Contents.Count & _

" 个Session变量<P>"

Dim strName, iLoop

For Each strName in Session.Contents

'判断一个Session变量是否为数组

If IsArray(Session(strName)) then

'如果是数组,那么罗列出所有的数组元素内容

For iLoop = LBound(Session(strName)) to UBound(Session(strName))

Response.Write strName & "(" & iLoop & ") - " & _

Session(strName)(iLoop) & "<BR>"

Next

Else

'如果不是数组,那么直接显示

Response.Write strName & " - " & Session.Contents(strName) & "<BR>"

End If

Next

%>

版权声明:
作者:Kiyo
链接:https://www.wkiyo.cn/html/2008-01/i340.html
来源:Kiyo's space
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>