如何在ASP.NET中访问类库中的会话变量

时间:2015-08-18 13:49:24

标签: c# asp.net session

我在Session["MyVariable"]中分配了一个值,但无法访问类库中Session["MyVariable"]的数据。我给了类库的system.web引用,我在我的类文件中使用了system.web命名空间。我编写了代码来获取会话数据

if(HttpContext.Current != null)
string s = HttpContext.Current.Session["MyVariable"].ToString();

获取HttpContext.Current为空

请帮我解决这个问题,让我知道在类库中获取会话值的方法

0 个答案:

没有答案