如何在我的 mvc 应用程序中使用 jquery/javascript 使会话过期
在我的应用程序中,我正在处理 xml 文件差异。有时,在处理 xml 文件差异时,响应会被挂起,因此有时我刷新浏览器,以便加载程序将删除并重新开始处理。
我想在发生此类挂起问题时使会话过期吗?或者我还可以做什么来消除此类错误?请建议。
请注意,我使用的是 MVC 3.0,使用的是 Fluent nhibernate。
In my application i m processing xml file differences. Some time when processing xml file differences the response is being hanged due to which some time i refresh the browser so that the loader will remove and processing will start again.
I want to expire session when such type of hanging problem occur? OR what other I do for removing such type of bug? Please suggest.
Please note that, i m using MVC 3.0 using fluent nhibernate.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我要做的就是用java脚本启动一个计时器。当您调用函数来处理 xml 差异时,启动计时器,并在 X 毫秒后触发时,向您的 mvc 控制器调用 ajax 函数,在该控制器中通过 .net 终止会话或将其设置为 null。从他们中,您可以重定向到不同的视图或相同的视图来重新启动该过程,或者您可以将 var 返回到 javascript,触发该函数再次调用,而无需刷新页面(如果可以的话)
What I would do is start a timer in java-script. when you call your function to process the xml differences start the timer and when it fires after X amount of milliseconds call an ajax function to your mvc controller where you expire your session via .net or set it to null. from their you can either redirect to a different view or the same one starting the process over or you can return a var to the javascript triggering the function to just be called again without a page refresh if that will work