MVC 会员工具包问题

发布于 2024-08-02 12:00:37 字数 88 浏览 1 评论 0原文

我使用该套件使我的网站正常运行。

我的问题是,当您单击复选框保持登录状态时,他们是否可以延长您保持登录状态的时间。我的客户想要一个小时左右的时间。

I have my site up and running just fine using the kit.

My question is, when you click on the check box to stay logged in, is their a way to extend the amount of time that you stay logged in for. My client would like something like an hour.

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

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

发布评论

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

评论(2

人海汹涌 2024-08-09 12:00:37

尝试增加 web.config 中的 authentication/forms/timeout 值:

<authentication mode="Forms">
    <forms loginUrl="~/Account/LogOn" timeout="60"/>
</authentication>

来自 MSDN

指定 cookie 过期的时间(以整数分钟为单位)。 ...默认值为“30”(30 分钟)。

Try to increase authentication/forms/timeout value in web.config:

<authentication mode="Forms">
    <forms loginUrl="~/Account/LogOn" timeout="60"/>
</authentication>

From MSDN:

Specifies the time, in integer minutes, after which the cookie expires. ... The default is "30" (30 minutes).

热血少△年 2024-08-09 12:00:37

是的,您在 web.config 中的表单超时中设置了此设置,

    <authentication mode="Forms">
       <forms loginUrl="~/Account/LogOn" timeout="2880"/>
    </authentication>

当前设置为 48 小时 (2880/60)。

如果您想要一个小时,请将其更改为 60。不过,更长的时间会更合适。

Yeah, you set this in your Forms timeout in the web.config

    <authentication mode="Forms">
       <forms loginUrl="~/Account/LogOn" timeout="2880"/>
    </authentication>

Which is currently set to 48 hours (2880/60).

Change it to 60 if you'd like an hour. Although, something much longer would be more appropriate.

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