I'm trying to keep a list of currently logged in users in a database table.
When people log in, it adds them fine, but when they close the browser, I want to remove them from this table.
Am I right that the Session_OnEnd method in Global.asa is run when the browser is closed?
If so I was running my script to remove them in that segment using the Session("username"
property in my SQL statement, however, it does not remove them. Is this because in the Session_OnEnd method, the Session("username"
or similar are cleared at the beginning and so Session("username"
is empty when I use it?
Can anyone offer some suggestions for my problem?
TIA
When people log in, it adds them fine, but when they close the browser, I want to remove them from this table.
Am I right that the Session_OnEnd method in Global.asa is run when the browser is closed?
If so I was running my script to remove them in that segment using the Session("username"
Can anyone offer some suggestions for my problem?
TIA