Session timeout in ASP.NET

后端 未结 15 2217
忘了有多久
忘了有多久 2020-11-22 09:14

I am running an ASP.NET 2.0 application in IIS 6.0. I want session timeout to be 60 minutes rather than the default 20 minutes. I have done the following

  1. Set <
15条回答
  •  花落未央
    2020-11-22 09:33

    I don't know about web.config or IIS. But I believe that from C# code you can do it like

    Session.Timeout = 60; // 60 is number of minutes
    

提交回复
热议问题