Does anyone know how to track the client still connected to the server after the session is completed?
Printable View
Does anyone know how to track the client still connected to the server after the session is completed?
Once the session ends, you can no longer track the user. How could you? Maybe with a cookie or something.. but even then only your site can load it..
Might help if you explain what you are trying to do..
I mean is:
I have a page let said name :: abc.cfm
Upon the user access to this page, my server will do what ever base on this page.
Once the page is completed loaded, the session is consider done rite?
What I want to do is...
- How do i check wheather the client browser still open/close?
No. The session remains until it times out. The default timeout on IIS is 20 minutes. So a session will remain in memory for 20 minutes AFTER the last page access. If a user goes to another site, and returns to your site before the timeout, he is accessing the page using the same session id. If not, a new session is begun.