在程序调试中,有时候需要知道有多少Session变量在使用,她们的值如何?由于Session对象提供一个称为Contents的集合(Collection),我们可以通过For...Each循环来达到目标:
Dim strName, iLoop
For Each strName in Session.Contents
Response.Write strName & " - " & Session.Contents(strName)& "
1<br/>
"
Next
一般情况下,上面的代码可以工作得很好。但当Session变量是一个对象或者数组时,打印的结果就不正确了。
这样我们修改代码如下:
'首先看看有多少Session变量在使用?
Response.Write "There are " & Session.Contents.Count & _
" Session variables
1<p>"
2Dim strName, iLoop
3'使用For Each循环察看Session.Contents
4'如果Session变量是一个数组?
5If IsArray(Session(strName)) then
6'循环打印数组的每一个元素
7For iLoop = LBound(Session(strName)) to UBound(Session(strName))
8Response.Write strName & "(" & iLoop & ") - " & _
9Session(strName)(iLoop) & "<br/>"
10Next
11Else
12'其他情况,就简单打印变量的值
13Response.Write strName & " - " & Session.Contents(strName) & "<br/>"
14End If
15Next
16
17Session变量有时候不能工作,为什么?
18有很多可能性:
19第一,如果客户端不允许cookie操作,session将失效。因为session是依赖于cookie的。
20第二,session有失效时间的设定。缺省的设置是20分钟。你可以这样修改它:Web directory -> Properties -> Virtual directory -> Application settings -> Configuration -> App Options -> Session timeout
21或者在ASP中,写上这样的代码:Session.timeout=60 。
22第三,session是和具体的Web Application相关的。如果用户从/products/default.asp浏览到/jobs/default.asp,也可能造成session的重新创建。
23
24怎么清除一个不再需要的session变量但不使session失效?
25在ASP3.0中:
26Session.Contents.Remove "变量名"
27可以清除一个变量。
28在ASP2.0中:
29set session("变量名")=NULL
30可以清除变量。
31在ASP3.0中,
32Session.Contents.RemoveAll
33可以清除所有的session变量和session.abandon不同,上面的方法都不会使目前的session过期或者无效。
34
35ASP页面顶端的```
36@ ENABLESESSIONSTATE=True
37```是什么意思?
38IIS使用一种叫做Session跟踪的技术,来保证各个Session变量在每个页面是可用的。当用户访问某个ASP页面时候,IIS会首先为这个页面准备好各个Session变量,这当然会带来性能上的影响。(使用Session变量的代价总是很高的!)
39如果你有100个页面,而只有5个页面用到了Session,那么,为了整体的性能,你只需要在那5个页面设置:
@ ENABLESESSIONSTATE=True
1而其他页面设置为:
@ ENABLESESSIONSTATE=False