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

我的网站(ASP.NET webForm)在没有用户请求的情况下注销,asp.net,Asp.net,我的网站ASP.NET webForm在没有用户请求的情况下注销,用户被迫登录页面并中断其工作?请建议。。。 我的web.config中的这一行 <authentication mode="Forms"> <forms loginUrl="~/Account/XXXXXXX.aspx" timeout="2880" /> </authentication> 尝试增加会话超时值,默认情况下为30分钟 <system.web>

我的网站ASP.NET webForm在没有用户请求的情况下注销,用户被迫登录页面并中断其工作?请建议。。。 我的web.config中的这一行

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

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

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

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