本文介绍了列出所有会话信息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想在页面中显示我的asp.net页面(aspx)的所有会话信息.我该怎么办?
I want to display all the session information of my asp.net page (aspx) in the page. How can I do that?
编程语言是C#.
推荐答案
这两种方法对我有用,对David的回答做了些微改进和修正:
These two methods is working for me, improved and corrected David's answer slightly:
for (int i = 0; i < Session.Count; i++)
{
var crntSession = Session.Keys[i];
Response.Write(string.Concat(crntSession, "=", Session[crntSession]) + "<br />");
}
第二种方法
foreach (var crntSession in Session)
{
Response.Write(string.Concat(crntSession , "=", Session[crntSession .ToString()]) + "<br />");
}
这篇关于列出所有会话信息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!