我试图在会话中保存值,然后在页面刷新时,我试图使用该值。但每次都进入循环。
我正在使用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