ユーザーがボタンの後ろからページにアクセスした場合、ページが自動的にサインアウトするようにしたい。
以下は私のコードです:
protected void Page_Load(object sender, EventArgs e)
{
Label1.Visible = false;
try
{
if (!IsPostBack)
{
TxtLogin.Focus();
Session["url"] = null;
Response.Cache.SetNoStore();
Response.Expires = -1;
Session.Abandon();
if (Page.User.Identity.IsAuthenticated)
{
FormsAuthentication.SignOut();
Response.Redirect("~\\LoginPage.aspx", false);
}
}
}
catch (Exception ex) { throw new Exception(ex.Message); }
}
IEでは動作しますが、Firefoxでは動作しません。Firefoxの方法は?