MVC 会员工具包问题
我使用该套件使我的网站正常运行。
我的问题是,当您单击复选框保持登录状态时,他们是否可以延长您保持登录状态的时间。我的客户想要一个小时左右的时间。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试增加 web.config 中的
authentication/forms/timeout
值:来自 MSDN:
Try to increase
authentication/forms/timeout
value in web.config:From MSDN:
是的,您在 web.config 中的表单超时中设置了此设置,
当前设置为 48 小时 (2880/60)。
如果您想要一个小时,请将其更改为 60。不过,更长的时间会更合适。
Yeah, you set this in your Forms timeout in the web.config
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.