Hi,
How do you detect the session was timed out? If the session is timed out, I would like to display a message. How?
Thx
Joe
Hi,
How do you detect the session was timed out? If the session is timed out, I would like to display a message. How?
Thx
Joe
Originally Posted by joecool2005
sessioncheck.asp
<%
if Session("YourValue") <> CONST_YOUR_SESSION_VALUE then
Response.write "Session Time Out"
Response.End
end if
%>
some.asp
<!--#include file="sessioncheck.asp -->
........
.....
Bookmarks