Wednesday, April 3, 2019

how to set session timeout in asp.net

The default session time in asp.net is 20 minutes.

we can changes these session timeout by add following code into web.config file

<configuration>
  <system.web>
<sessionState cookieless="false" regenerateExpiredSessionId="true" timeout="60" />
</configuration>
  </system.web>

Featured Post

What is JavaScript? What is the role of JavaScript engine?

  The JavaScript is a Programming language that is used for converting static web pages to interactive and dynamic web pages. A JavaScript e...