Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 IIS 上部署了一个 Web 应用程序。它在本地主机上运行良好,但是当我在 IIS 上部署它时,它会在进入下一页之前终止会话。
这是我的 web.config
<system.web> <compilation debug="true" targetFramework="4.0"/> <sessionState timeout="60" /> </system.web>
如何防止 IIS 终止会话?