Asp列出所有session变量

发布时间:2016年3月21日 作者:未知 查看次数:2021

 代码自百度

 

代码:

   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

 

 

 ================================

以下自:http://www.jb51.net/article/19385.htm

ASP所有的Session变量获取实现代码

 

在程序调试中,有时候需要知道有多少Session变量在使用,她们的值如何?由于Session对象提供一个称为Contents的集合(Collection),我们可以通过For...Each循环来达到目标

Dim strName, iLoop 
For Each strName in Session.Contents 
Response.Write strName & " - " & Session.Contents(strName)& "[BR]" 
Next

一般情况下,上面的代码可以工作得很好。但当Session变量是一个对象或者数组时,打印的结果就不正确了。 这样我们修改代码如下: 

代码如下:


'首先看看有多少Session变量在使用? 

Response.Write "There are " & Session.Contents.Count & _ 
" Session variables<P>" 
Dim strName, iLoop 
For Each strName in Session.Contents    '**
'使用For Each循环察看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


Session变量有时候不能工作,为什么? 有很多可能性:第一,如果客户端不允许cookie操作,session将失效。因为session是依赖于cookie的。第二,session有失效时间的设定。缺省的设置是20分钟。你可以这样修改它:Web directory -> Properties -> Virtual directory -> Application settings -> Configuration -> App Options -> Session timeout 或者在ASP中,写上这样的代码:Session.timeout=60 。第三,session是和具体的Web Application相关的。如果用户从/products/default.asp浏览到/jobs/default.asp,也可能造成session的重新创建。 怎么清除一个不再需要的session变量但不使session失效? 在ASP3.0中: Session.Contents.Remove "变量名" 可以清除一个变量。在ASP2.0中: set session("变量名")=NULL 可以清除变量。在ASP3.0中, Session.Contents.RemoveAll 可以清除所有的session变量和session.abandon不同,上面的方法都不会使目前的session过期或者无效。 ASP页面顶端的是什么意思? IIS使用一种叫做Session跟踪的技术,来保证各个Session变量在每个页面是可用的。当用户访问某个ASP页面时候,IIS会首先为这个页面准备好各个Session变量,这当然会带来性能上的影响。(使用Session变量的代价总是很高的!) 如果你有100个页面,而只有5个页面用到了Session,那么,为了整体的性能,你只需要在那5个页面设置: 

代码如下:


<%@ ENABLESESSIONSTATE=True %> 


而其他页面设置为: 

代码如下:


<%@ ENABLESESSIONSTATE=False %>

 

 



版权所有!www.sieye.cn
E.Mail:sieye@sohu.com QQ:66697110