私がやろうとしているのは、Global.asax.cs ファイルの関数を使用して、ユーザーのログイン セッションの有効期限が切れたことを検出し、有効期限が切れている場合は、ユーザーをログイン ページにリダイレクトする必要があることです。コードは次のとおりです。
protected void Session_Start(object sender, EventArgs e)
{
if (Context.Session != null)
{
if (Session.IsNewSession)
{
HttpCookie newSessionIdCookie = Request.Cookies["ASP.NET_SessionId"];
if (newSessionIdCookie != null)
{
string newSessionIdCookieValue = newSessionIdCookie.Value;
if (newSessionIdCookieValue != string.Empty)
{
//I want to let the client side page to pop-up an alert to indicate the user
//that the session is expired.
Response.Write("<script>alert('Your Session is out, please re-login!');</script>");
// This means Session was timed Out and New Session was started
Response.Redirect("Login.aspx");
}
}
}
}
}
ただし、現在のコードの問題は、セッションが期限切れになると、ページが直接リダイレクトされ、アラートのポップアップがまったく表示されないことです。
誰か助けてくれませんか?前もって感謝します!