Asp.Net 中的会话超时延长
如何延长会话超时时间? 我尝试输入:
Session.Timeout = 720;
In formLoad
并尝试在 webconfig
:
<system.web>
<sessionState
mode="InProc"
cookieless="true"
timeout="720" />
</system.web>
但仍然在 10 分钟后超时。有人可以帮忙解决这个问题吗?
How to extend the session timeout?
I tried entering:
Session.Timeout = 720;
In formLoad
and also tried in webconfig
:
<system.web>
<sessionState
mode="InProc"
cookieless="true"
timeout="720" />
</system.web>
But still it times out after 10 minutes. Can anyone help about this issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看看这个 Microsoft Technet 文章。检查它是否适合您的需求。
Take a look at this Microsoft Technet article. Check if it suits your needs.
您可能会看到这篇文章,我还没有使用过它,但不久前我需要类似的东西在网络服务中使用,我用另一种方法完成了。它可能对您有用:
除颤器:保持 ASP.NET 会话无限活动
You might see this article, I haven't used it but a time ago I needed something like this to use in a webservice and I finished with another approach. It could be useful to you:
The Defibrillator: Keeping ASP.NET Session Alive Ad Infinitum