View Full Version : detect session time out
joecool2005
07-28-2006, 03:27 PM
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
MongolMan
07-29-2006, 05:55 AM
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
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 -->
........
.....
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.