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>
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>