我有以下配置,试图让会话保留大约 239 分钟,但是会话在不到一个小时内丢失。
<system.web>
<sessionState mode="InProc" timeout="240" />
<compilation debug="true" targetFramework="4.0">
<assemblies>
...
</assemblies>
</compilation>
<authentication mode="Forms">
<forms loginUrl="~/Account/LogOn" timeout="239" />
</authentication>
<pages>
<namespaces>
...
</namespaces>
</pages>
我不相信有任何 C# 代码覆盖这些设置。
有谁知道为什么会发生这种情况?