如果用户没有任何活动,我试图让我的网站在一段时间后返回登录页面。
到目前为止,在我的 web.config 中,我尝试过:
<system.web>
<authentication mode="Forms">
<forms defaultUrl="~/notifications.aspx" loginUrl="~/index.aspx" timeout="1" slidingExpiration="true">
</forms>
</authentication>
<sessionState mode="InProc" cookieless="false" timeout="2"/>
</system.web>
但是当我在几分钟后尝试加载页面时,由于会话变量不存在而出现错误 -
如果我要尝试任何事情,这不应该转到登录页面吗?
有死吗?
谢谢,