ASP.NET MVC +表单身份验证 + AJAX:轮询操作而不重置身份验证票证过期

发布于 2024-09-01 17:34:08 字数 96 浏览 2 评论 0原文

有没有办法将控制器操作标记为重置表单身份验证票滑动过期?我想使用 ajax 每 x 秒轮询一次服务器以获取新信息,但这将有效防止用户会话过期。

Is there a way to mark a Controller Action to not reset the Forms Authentication ticket sliding expiration? I want to poll the server every x seconds for new info using ajax but that will effectively prevent the user session from ever expiring.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

空‖城人不在 2024-09-08 17:34:08

续订票证的代码烘焙在 FormsAuthenticationModule< 内/a> 类是密封的,无法修改此行为。这是由 RenewTicketIfOld 完成的方法。无论如何 启用 sliderExpiration 被视为您网站的安全漏洞。

The code that renews the ticket is baked inside the FormsAuthenticationModule class which is sealed and it is not possible to modify this behavior. This is done by the RenewTicketIfOld method. Anyway enabling slidingExpiration is considered a security vulnerability for your site.

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