You are thinking of a session handled by asp. I am speaking about the HTTPS sessions that are handled by server.
quote:
"the HTTPS session expire"
Main Topics
Browse All TopicsI currently have an ASP tool that i am developing and i am having one bit of trouble. The user has to be authenticated to view the pages. Is there any easy way to make the HTTPS session expire so that another user can login. I know i can close the browser and then have the user open a new browser and authenticate again but i would rather the AUTH_USER and AUTH_PASSWORD be reset within the same browser. I dont want to journey outside the realm of ASP.....
Any ideas?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I ran into a similar situation a few years back, we never found a solution. It appears once the browser initiates SSL, it keeps that credential active untill the browser session dies. Which kinda makes sense. It's 2 way encryption... just like a user doesn't want a server's identity to change on them in the middle of an SSL session, a server doesn't want a user's identity to change.
We just chose to inform the user that if they wanted to logout, after they accessed the logout page, they needed to close their browser too.
You shouldn't have this issue if you managed user authentication through ASP or other mechanism in your web app.
Business Accounts
Answer for Membership
by: jekl2000Posted on 2002-10-23 at 12:35:40ID: 7362032
session.abandon will end the session without having to close the browser