我在Session["MyVariable"]
中分配了一个值,但无法访问类库中Session["MyVariable"]
的数据。我给了类库的system.web引用,我在我的类文件中使用了system.web命名空间。我编写了代码来获取会话数据
if(HttpContext.Current != null)
string s = HttpContext.Current.Session["MyVariable"].ToString();
我获取HttpContext.Current为空
请帮我解决这个问题,让我知道在类库中获取会话值的方法