ASP中如何得到所有的session对象的值
4个回答
展开全部
用For Each语句对Session.Contents树组进行遍历。
代码:
<%@ LANGUAGE=VBScript codepage ="936" %>
<% Option Explicit %>
您的sessionID号是:<%=session.sessionid%><br>
<%
Response.Write "在你的程序中一共使用了 " & Session.Contents.Count & " 个Session变量"
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
%>
代码:
<%@ LANGUAGE=VBScript codepage ="936" %>
<% Option Explicit %>
您的sessionID号是:<%=session.sessionid%><br>
<%
Response.Write "在你的程序中一共使用了 " & Session.Contents.Count & " 个Session变量"
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
%>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用For
Each语句对Session.Contents树组进行遍历。
代码:
<%@
LANGUAGE=VBScript
codepage
="936"
%>
<%
Option
Explicit
%>
您的sessionID号是:<%=session.sessionid%><br>
<%
Response.Write
"在你的
程序
中一共使用了
"
&
Session.Contents.Count
&
"
个Session变量"
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
%>
Each语句对Session.Contents树组进行遍历。
代码:
<%@
LANGUAGE=VBScript
codepage
="936"
%>
<%
Option
Explicit
%>
您的sessionID号是:<%=session.sessionid%><br>
<%
Response.Write
"在你的
程序
中一共使用了
"
&
Session.Contents.Count
&
"
个Session变量"
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(session("id"))%>
或
<%=session("id")%>
输出session("id")的值
或
<%=session("id")%>
输出session("id")的值
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<%=Session("对象")%>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询