原文章请参考 https://edgewebware.com/2014/06/automatically-log-out-members-send-login-page-umbraco/
在网站开发过程中,需要有个功能,就是说用户登录网站后,如果一段时间内(比如 20分钟)内没有任何操作,就应该自动退出网站。
我是这样实现的:
在web.config中,进行如下的设定:
<sessionState mode="InProc" customProvider="DefaultSessionProvider" timeout="20"> <authentication mode="Forms"> <forms name="yourAuthCookie" loginUrl="/Login" protection="All" path="/" timeout="20" /> </authentication>
在网站web.config文件的sessionState和authentication节点中,设置timeout=20,这里的单位默认是分,也就是说20分钟
同时,在网站的模板文件Layout.cshtml中,在<head></head>中加入
<meta http-equiv="refresh" content="1250;URL=/Login">
这里的单位是秒,20分钟就是1200秒,这里通常会增加点(具体原因还没弄明白),我就设置成1250秒
这样就可以了