表单身份验证 Cookie 过期

发布于 2024-08-17 13:55:51 字数 199 浏览 3 评论 0原文

我有一个使用表单身份验证的 ASP.NET Web 应用程序。在 web.config 中,表单身份验证超时值设置为“20”(我理解为 20 分钟)。

我们发现一个问题,您将与网站进行交互(即单击链接按钮、执行回发等)并随机返回到登录页面进行身份验证。

似乎遵守了超时,但活动并未重新启动计数器。

有什么想法可以在哪里查看或如何调试吗?

I have an ASP.NET web application that uses Forms Authentication. In the web.config, the forms authentication timeout value is set to "20" (which I understand to be 20 minutes).

We're seeing an issue where you'll be interacting with the site..(i.e. clicking on linkbuttons, performing postbacks, etc.) and randomly get sent back to the Login page to authenticate.

It seems like the timeout is being obeyed, but activity is not restarting the counter.

Any ideas where to look or how to debug this?

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

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

发布评论

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

评论(2

孤芳又自赏 2024-08-24 13:55:51

检查 web.config 中的 slidingExpiration 并确保其设置为 true

 <authentication mode="Forms">
   <forms loginUrl="~/Account/Login" timeout="2880" protection="All" slidingExpiration="true">      
   </forms>
 </authentication>

这也是负载平衡的网站吗?确保会话信息不在进程中,或使用粘性会话。

check slidingExpiration in web.config and make sure it's set to true

 <authentication mode="Forms">
   <forms loginUrl="~/Account/Login" timeout="2880" protection="All" slidingExpiration="true">      
   </forms>
 </authentication>

also is this load balanced web site? make sure session information is out of process, or use sticky session.

小女人ら 2024-08-24 13:55:51

还需要在 标记上设置 timeout 属性,如 这篇关于表单身份验证的博客文章。

Setting the timeout attribute on the <forms /> tag is also neccessary as described in this blog post about forms authentication.

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