监测你的站点使用多少session和application的程…

2008-02-23 09:47:54来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

<%@ Language=VBScript %>
<% Option Explicit %>
您的sessionID号是:<%=session.sessionid%><br>
<%
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

Response.Write "在你的程序中一共使用了 " & application.Contents.Count & _
" 个application变量<P>"
%>
------------------------------
本站的检测结果:
在你的程序中一共使用了 3 个Session变量
在你的程序中一共使用了 4 个application变量

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:将ASP生成的内容写入响应流中最有效的方法

下一篇:生成静态的页面(asp)