Question:
Is there a way in membership to end a specific users session?
When I open my page that shows me the users that are online, it shows users online even if they have logged out using my logout page with Session.Abandon().
I would like to end that users session with the click of a button or link.
Answer1:
on button click Use Session.Remove("sessionName");
jignesh
Answer2:
This might sound like a silly question, but what is the SessionName?
Answer3:
I have a page that lets me select a row in a gridview and see membership and profile information about the selected user. I can see if the user is online or not. If I know they are not online anymore I would like to click a button/link and end that users session.
How can this be done?