表单身份验证的会话超时,如何显示模式弹出或重定向整个页面
我正在使用 asp.net mvc 和 jquery 发出 ajax 请求,当 ajax 请求后会话超时时,完整的 sigin 页面将加载到我的 ajax div 中。
当会话超时时,如何显示模式弹出窗口而不是进行重定向?
I am using asp.net mvc and jquery to make ajax requests and when the session times out after an ajax request the full sigin page gets loaded into my ajax div.
How can I display a modal popup instead of making a redirect when a session times out?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我想到的一种处理此问题的方法是使用自定义 HTTP 标头:
并在登录操作中设置适当的标头:
One way to handle this that comes to mind is to use a custom HTTP header:
And in your LogOn action you set the appropriate header:
我的解决方案只是将五行 JavaScript
放在登录页面上。如果加载到主页上的 div 中,它将重定向到登录页面。 “#site”是一个div的id,它位于除登录页面之外的所有页面上。
My solution is just five lines of JavaScript
Put it on the login page. If is was loaded in a div on the main page, it will redirect til the login page. "#site" is a id of a div which is located on all pages except login page.