ASP.Net 注销代码块
我需要一个好的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要确保会话被放弃并调用
FormsAuthentication.SignOut()
方法,如下所示:You need to make sure that the session is abandoned and call the
FormsAuthentication.SignOut()
method as shown below:假设您正在使用表单身份验证,您只需这样做:
没有更多信息,我无法更具体。
Assuming you're using Forms Authentication, you would just do:
Without more information I can't be more specific.