Hello everyone,
Some of my legacy program is using ASP (not ASP.Net), and even if I set long session expire time for example to 20 minutes, sometimes in short time (e.g. in several minutes) I will still notice session expire error box -- "too much idle time, please login again".
Any ideas to analalyze further? Not sure whether it is my code bug or server (browser) configuration issue? Since not all client/server met with this strange issue.
BTW: the session expire box is triggred by my code:
<%
if session("timeToken") = "" then
%>
<script language = "JavaScript">
<!--
window.alert ("too much idle time, please login again");
//-->
</script>
<%
response.End()
end if
%>
thanks in advance, George