会话/表单身份验证超时

时间:2013-07-17 15:42:36

标签: asp.net web-config

如果用户没有活动,我会在一段时间后让我的网站返回登录页面。

到目前为止,在我的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> 

但是当我尝试在几分钟后加载页面时,由于会话变量不存在而导致错误 -

如果我要尝试任何东西,不应该进入登录页面吗?

任何deas?

谢谢,

0 个答案:

没有答案