I'm toying with the idea of displaying a message a few minutes before the user's session is about to expire.
Every time the user makes a request to the server with their browser the session time is reset.
The user can be active on the site in multiple tabs in the browser.
This means that I can't tell if the user's time is about to expire client-side because the user may have made a request to the server in some other tab which would reset the Session timeout time.
I know this is probably not the best thing to ask but here I go anyway...is there a way to develop a (*wince*) global JavaScript method for all tabs?
I'm looking into using cookies since they are global...but I'm still curious about global JavaScript methods
-Frinny
Every time the user makes a request to the server with their browser the session time is reset.
The user can be active on the site in multiple tabs in the browser.
This means that I can't tell if the user's time is about to expire client-side because the user may have made a request to the server in some other tab which would reset the Session timeout time.
I know this is probably not the best thing to ask but here I go anyway...is there a way to develop a (*wince*) global JavaScript method for all tabs?
I'm looking into using cookies since they are global...but I'm still curious about global JavaScript methods
-Frinny
Comment