My old program uses ASP(not ASP.Net), and even if I set a long session end time, for example, to 20 minutes, sometimes in a short time (for example, after a few minutes), I still notice session expire error box -
"too much downtime, please log in again."
Any ideas for further analysis? I'm not sure if this is a mistake in my code or a problem with the server (browser), because not all combinations of clients and servers encounter this strange problem.
The session end cell is triggered by my code:
<%
if session("timeToken") = "" then
%>
<script language = "JavaScript">
</script>
<%
response.End()
end if
%>
source
share