ASP.NET Razor/Webmatrix 站点过快地注销用户。如何改变?

发布于 2024-12-11 09:23:39 字数 100 浏览 0 评论 0原文

Webmatrix 中的 WebSecurity 组件非常灵活,但用户会话对我来说过期得太快了。似乎是以小时为单位来衡量的,我希望会话超时以天为单位。

如何更改会话超时?

The WebSecurity component in Webmatrix is pretty slick, but users' sessions expire too quickly for me. It seems like it's measured in hours and I'd like the session timeout to be more in terms of days.

How do I change the session timeout?

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

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

发布评论

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

评论(1

桃扇骨 2024-12-18 09:23:39

在回答您的问题时,您可以为 会话超时设置任意值web.config

<configuration>
  <system.web>
     <sessionState timeout="value_in_minutes"></sessionState>
  </system.web>
</configuration>

默认情况下,会话会在用户最后一次活动后 20 分钟后过期。持续几天的会议似乎很疯狂。我想不出任何合理的理由。您到底想解决什么问题?

In answer to your question, you can set any value for session timeout in your web.config:

<configuration>
  <system.web>
     <sessionState timeout="value_in_minutes"></sessionState>
  </system.web>
</configuration>

By default, sessions expire 20 minutes after the last activity from the user. Having sessions last for days seems insane. There is absolutely no sensible reason that I can think of for that. What problem are you trying to solve, exactly?

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