I need to keep the session of my application alive. I have seen that it can be set to a certain time by implementing the following code:
Sub Session_OnStart
Session.Timeout = 90
End Sub
Is there any way to make in unlimited? Thanks
I need to keep the session of my application alive. I have seen that it can be set to a certain time by implementing the following code:
Sub Session_OnStart
Session.Timeout = 90
End Sub
Is there any way to make in unlimited? Thanks
In my opinion is a really bad idea to make the session unlimited, the best thing you can do is to store the login information and restore the session when an user postback in your site, so you don't need the iis to set high timeout times.
If not possible why not alert user that session is about to time out