如何在我的 mvc 应用程序中使用 jquery/javascript 使会话过期

发布于 2024-12-10 08:44:27 字数 182 浏览 0 评论 0原文

在我的应用程序中,我正在处理 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 技术交流群。

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

发布评论

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

评论(1

花心好男孩 2024-12-17 08:44:27

我要做的就是用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

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