ASP.Net 注销代码块

发布于 2024-07-24 07:14:47 字数 55 浏览 8 评论 0原文

我需要一个好的 ASP.NET 注销代码块。 目前,注销后您可以点击后退按钮并继续使用该网站。

I need a good logout code block for asp.net. Currently after you logout you can hit the back button and continue using the site.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

荒人说梦 2024-07-31 07:14:47

您需要确保会话被放弃并调用 FormsAuthentication.SignOut() 方法,如下所示:

private void Logout()
{
  Session.Abandon();
  FormsAuthentication.SignOut();
  FormsAuthentication.RedirectToLoginPage();
}

You need to make sure that the session is abandoned and call the FormsAuthentication.SignOut() method as shown below:

private void Logout()
{
  Session.Abandon();
  FormsAuthentication.SignOut();
  FormsAuthentication.RedirectToLoginPage();
}
十二 2024-07-31 07:14:47

假设您正在使用表单身份验证,您只需这样做:

System.Web.FormsAuthentication.SignOut();

没有更多信息,我无法更具体。

Assuming you're using Forms Authentication, you would just do:

System.Web.FormsAuthentication.SignOut();

Without more information I can't be more specific.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文