我的网站(ASP.NET webForm)注销没有用户请求

时间:2014-04-22 08:03:43

标签: asp.net

我的网站(ASP.NET webForm)注销了用户请求,用户被迫登录页面并中断他的工作?请指教 ... 来自我的web.config

的这一行
 <authentication mode="Forms">
      <forms loginUrl="~/Account/XXXXXXX.aspx" timeout="2880" />
    </authentication>

1 个答案:

答案 0 :(得分:0)

尝试增加会话超时值,默认为30分钟。

<system.web>
    <authentication mode="Forms">
          <forms loginUrl="~/Account/XXXXXXX.aspx" timeout="2880"/>
    </authentication>

    <sessionState timeout="3000"  />
</system.web>