How can you tell if a users session has expired based on the
session time out in the <cfapplication> tag?
<cfapplication name = "test"
clientmanagement = "Yes"
sessionmanagement = "Yes"
setclientcookies = "Yes"
sessiontimeout = "#CreateTimeSpan(0, 0, 3, 0)#"
applicationtimeout = "#CreateTimeSpan(0, 0, 3, 0)#">
A user logs into the site, pulls up some page and then
doesn't come back to that page for 10 minutes. Is there a way to
direct this user to a session time out page? It seems that once a
user times out, you don't know if that user has already been to the
site or if they are a new user hitting the site for the first time.
I basically want a user who has previously logged into the
site, and who has timed out, be redirected to a session time out
page, but a new user would be directed to a login page. I just
can't figure out how to determine if a user has logged in and timed
out versus a new login.