ASP.NET MVC 会话在浏览器关闭时仍然处于活动状态
我有一个启用了会话状态的 asp.net mvc 应用程序 (sqlSessionProvider)。最终用户需要登录 ASP.NET MVC 应用程序。
登录后,当最终用户关闭浏览器时,会话在最终用户下次返回网站时仍处于活动状态。
谁能告诉我解决这个问题的最佳解决方案是什么?
谢谢。
I've got a asp.net mvc application with session state enabled (sqlSessionProvider). End user will need to log in to ASP.NET MVC Application.
Once loggedin and when end user closes the browser, the session is still active next time the end user comes back to website.
Could anyone tell me what is the best solution I should take to solve this problem, please.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
关闭浏览器窗口不会破坏会话。
请查看:asp.net 中的会话处理,了解有关解决方法的更多信息。
Sessions are not destroyed by closing the browser window.
Take a look at: session Handling in asp.net to find out more about the workarounds.
我的测试表明,只有 IE 8.0 不会在浏览器关闭时清理会话。其他浏览器如Safari、Firefox均无问题。
My testing showed the it's only IE 8.0 that is not cleaning the session on browser close. Other browsers such as Safari and Firefox have no problem.