我的网站(ASP.NET webForm)注销了用户请求,用户被迫登录页面并中断他的工作?请指教 ... 来自我的web.config
的这一行 <authentication mode="Forms">
<forms loginUrl="~/Account/XXXXXXX.aspx" timeout="2880" />
</authentication>
答案 0 :(得分:0)
尝试增加会话超时值,默认为30分钟。
<system.web>
<authentication mode="Forms">
<forms loginUrl="~/Account/XXXXXXX.aspx" timeout="2880"/>
</authentication>
<sessionState timeout="3000" />
</system.web>