M
mharness
Hello,
I'm working on an approach to systematically and automatically log users on
and off an app that precludes users from sharing usernames and passwords.
I have most of that working except for how to deal with a user that simply
or mistakenly closes the browser window (does not explicitly log off). As
it stands right now, they will have to wait at most 20 minutes for their
original session to time out (which completes the proper log out in the
session_end event in the global.asax) before they can log back on and
although I don't really have a problem with that wait (which I could shorten
I suppose), I'm sure it's going to po a few users.
When that user tries to log back on I'd like to check to see if their
previous session has timed out and if not, abandon it so they can log on
without waiting for the timeout. I've saved the sessionid so I guess what
I'd need is something like a session.abandon that allows me to specify the
sessionid.
Any thoughts, alternatives?
Thanks,
Mike
I'm working on an approach to systematically and automatically log users on
and off an app that precludes users from sharing usernames and passwords.
I have most of that working except for how to deal with a user that simply
or mistakenly closes the browser window (does not explicitly log off). As
it stands right now, they will have to wait at most 20 minutes for their
original session to time out (which completes the proper log out in the
session_end event in the global.asax) before they can log back on and
although I don't really have a problem with that wait (which I could shorten
I suppose), I'm sure it's going to po a few users.
When that user tries to log back on I'd like to check to see if their
previous session has timed out and if not, abandon it so they can log on
without waiting for the timeout. I've saved the sessionid so I guess what
I'd need is something like a session.abandon that allows me to specify the
sessionid.
Any thoughts, alternatives?
Thanks,
Mike