页面刷新时会话值变为空

时间:2015-06-23 22:19:06

标签: c# asp.net session

我试图在会话中保存值,然后在页面刷新时,我试图使用该值。但每次都进入循环。

我正在使用HttpContext.Current.Session因为我的班级继承自HTMLTable

if (HttpContext.Current.Session["Id"] == null)
{
    HttpContext.Current.Session["Id"] = "2";
}  
string a = HttpContext.Current.Session["Id"].ToString(); //I get 2, WORKS HERE

0 个答案:

没有答案