私はグーグルを検索し、セッションの有効期限をプログラムで検出するための多くの答えを見つけました。これは、誰もが使用しているのを見たコードです
global.asax
---------------
protected void Session_Start(object src, EventArgs e)
{
if (Context.Session != null && Context.Session.IsNewSession)
{
string sCookieHeader = Request.Headers["Cookie"];
if (null != sCookieHeader && sCookieHeader.IndexOf("ASP.NET_SessionId") >= 0)
Response.Redirect("/Session/Timeout");
}
}
上記のコードについていくつか質問があります。2) この行の意味は何ですか?Request.Headers["Cookie"];
良い議論を探しています。ありがとう