How to extend the session timeout? I tried entering:
Session.Timeout = 720;
In formLoad
and also tried in webconfig
:
<system.web>
<sessionState
mode="InProc"
cookieless="true"
timeout="720" />
</system.web>
But still it times out after 10 minutes. Can anyone help about this issue?