我遇到了ASP.NET会话的一个奇怪问题,它每隔几分钟就会继续死亡。我已经在web.config中进行了更改,但问题仍然存在。
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中的设置。我究竟做错了什么?如何使会话无止境?