ASP.NET 2.0防止Session丟失的方法

ASP.Net2.0中通過腳本進行的一些操作可能會導致Session丟失, 這個問題今天煩了我大半天. >_<
最後通過以下方法解決:

global.asax中设置HttpOnly属性为Fasle
void Session_Start(object sender, EventArgs e)
{
     Response.Cookies["ASP.NET_SessionId"].HttpOnly = false;
}

你可能感兴趣的:(asp.net)