我在使用 ASP.NET 会话时遇到了一个奇怪的问题,它每隔几分钟就会死掉一次。我在 web.config 中进行了更改,但问题仍然存在。
网络配置:
<system.web>
<compilation debug="true" targetFramework="4.0"/>
<customErrors mode="Off"></customErrors>
<sessionState mode="InProc" timeout="900"></sessionState>
<webServices>
<protocols>
<add name="HttpPost"/>
<add name="HttpGet"/>
<add name="HttpSoap"/>
</protocols>
</webServices>
</system.web>
我也更改了 IIS 中的设置。我究竟做错了什么?如何使会话无休止?