本文介绍了公共类中的会话变量?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在公共类中访问会话变量?
我尝试过下面的代码,但是我收到服务器错误对象引用不是
设置为对象的实例。
System.Web.HttpContext.Current.Session.Add(" myKey" ,myValue)
Dim a As String
a = System.Web.HttpContext.Current.Session.Item(" myKey")
谢谢,
Thomas Andersson
Hi,
How can I access a session variable within a Public Class?
I have tried the below code, but I get a server error "Object reference not
set to an instance of an object".
System.Web.HttpContext.Current.Session.Add("myKey" , "myValue")
Dim a As String
a = System.Web.HttpContext.Current.Session.Item("myKey ")
Thanks,
Thomas Andersson
推荐答案
错误发生在第1行还是第3行?
Does the error occur on the 1st or 3rd line?
这篇关于公共类中的会话变量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!