Hi, I'm looking for a way to NEVER expired logon user(s) until they log out or close the page themselves.
In my header, I have
and also, in my global.asa, I included
But, even my session seem to last longer, the server still logged me out eventually (much less than the 1440 I set). Is there something else I can do to to make this work?
thanks!
In my header, I have
Code:
Session.Timeout=1440
and also, in my global.asa, I included
Code:
Sub Session_OnStart
Session.Timeout = 1440
Session("Start") = Now
Application.Lock
...
End Sub
But, even my session seem to last longer, the server still logged me out eventually (much less than the 1440 I set). Is there something else I can do to to make this work?
thanks!