如何在asp.net应用程序中用户处于非活动状态3分钟时保持会话超时

时间:2013-11-20 10:02:09

标签: c# asp.net session

我想实现3分钟的会话超时。会话的实际工作方式是用户空闲3分钟,然后只有用户登出或会话到期。

但是在我的asp.net应用程序中会话的工作方式,它会在用户活动3分钟后到期。

我想知道为正确的会话处理做些什么。 我的代码示例在这里

<authentication mode="Forms">
<forms loginUrl="~/Login/LoginFrist.aspx" timeout="5" />
</authentication>

1 个答案:

答案 0 :(得分:0)

<system.web>
    <authentication mode="Forms" >
      <forms slidingExpiration="true" timeout="3"></forms>
    </authentication>
  </system.web>

将它放在web.config中或相应更新。

请查看以下内容以了解更多详情

Forms authentication timeout vs sessionState timeout