欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ASP.NET 设置Session过期时间

程序员文章站 2022-06-11 11:42:03
...

在webConfig中添加

 <system.web>
    <sessionState mode="InProc" timeout="30"></sessionState>
    <compilation debug="true" targetFramework="4.5.2" />
    <httpRuntime targetFramework="4.5.2" maxRequestLength="1024000000" />
    <customErrors mode="Off"></customErrors>
  </system.web>
相关标签: ASP.NET C#