ASP.NET MVC +表单身份验证 + AJAX:轮询操作而不重置身份验证票证过期
有没有办法将控制器操作标记为不重置表单身份验证票滑动过期?我想使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
续订票证的代码烘焙在 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.