我为HttpContext.Current.Session
我可以看到Count等于2,但我找不到实际的内容。在调试时我在哪里可以找到会话的内容?
答案 0 :(得分:4)
您需要在特定项目上设置监视,例如:
HttpContext.Current.Session["YourKey1"]
// or
HttpContext.Current.Session["YourKey2"]
您还可以查询Count
这是会话集合中的项目数:
HttpContext.Current.Session.Count
如果您想查看可以执行的所有Keys
:
string someKey = HttpContext.Current.Session.Keys[indexOfKeyYouWant];
答案 1 :(得分:1)
尝试添加
的监视表达式HTTPContext.Current.Items
这是对象是所有会话项的键/值对。