Hello everyone,
In MSDN, it is said, "The timeout will not take effect while a server component is processing." -- what does this statement mean? Could anyone show a scenario it is referring to please?
http://msdn.microsoft.com/en-us/library/ms524831.aspx
A related question is, whether it is good code to judge that, if a session variable is "" (Empty String), then I treat session as expired? Like this,
<%
if session("timeToken") = "" then
// logics deal with session expire?
%>
thanks in advance, George