c# .net Adsense ADO.NET Linq Viruses/security asp.net MVC JQuery Angular-js Node-js SEO Java C++ SQL API Networking vb.net .Net Css JavaScript Generics c#.Net entity framework HTML Website host Website Construction Guide HTTP tutorial W3C tutorial Web Services JSON Psychology Ionic framework Angular ReactJS Python Computer Android
c# .net

How to set session timeout in web.config?

| | ASP , ASP-NET

Here I am explaning how to set session timeout in web.config.


if we want to set our custom timeout in our applications we can set it


in web.config.  we can set timeout session in


<configuration>à under <system.web>




  
<configuration>
<system.web>
<sessionState mode="InProc" timeout="20">
</sessionState>
</system.web>
</configuration>