Asp.Net 中的会话超时延长

发布于 2024-08-21 18:46:40 字数 328 浏览 6 评论 0原文

如何延长会话超时时间? 我尝试输入:

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 技术交流群。

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

发布评论

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

评论(2

温柔戏命师 2024-08-28 18:46:40

看看这个 Microsoft Technet 文章。检查它是否适合您的需求。

<configuration>
  <system.web>
     <sessionState 
         cookieless="true" 
         timeout="20">
     </sessionState>
  </system.web>
</configuration>

Take a look at this Microsoft Technet article. Check if it suits your needs.

<configuration>
  <system.web>
     <sessionState 
         cookieless="true" 
         timeout="20">
     </sessionState>
  </system.web>
</configuration>
把回忆走一遍 2024-08-28 18:46:40

您可能会看到这篇文章,我还没有使用过它,但不久前我需要类似的东西在网络服务中使用,我用另一种方法完成了。它可能对您有用:

除颤器:保持 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

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