如果用户从按钮后面访问页面,我希望页面自动退出。
下面是我的代码:
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 做?