Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want destroy all sessions at one time. I have tried Session.Abondon() Method but i dont know why this is not destroying all the sessions.

share|improve this question
Must clear out this: Clear The current user session data, or ALL session data from all users ? - because answers are splited on this two cases. – Aristos Aug 29 '12 at 6:51
2  
Why downvotes?????? – Ram Aug 29 '12 at 6:56
@Aristos, Session.Clear only clears the current session - see my answer. – Joe Aug 29 '12 at 10:44

6 Answers

up vote 0 down vote accepted

Use HttpSessionState.Clear to clear out all sessions

From MSDN - HttpSessionState.Clear Method

Removes all keys and values from the session-state collection.

Call it like :

Session.Clear();
share|improve this answer
2  
This is wrong; HttpSessionState.Clear only clears out the current session: note the docmentation says "Removes all keys and values from the session-state collection.", not "Removes all keys and values from all session-state collections". – Joe Aug 29 '12 at 10:45

I want destroy all sessions at one time

I'm fairly sure you can't do this, short of recycling the application.

The currently accepted answer suggests using Session.Clear, but this only clears the current session - it is the same as Session.RemoveAll.

Why are there two methods Clear and RemoveAll that do exactly the same thing? I suspect RemoveAll is provided for backwards compatibility with the ASP Classic Session object, while Clear is the more usual method name for clearing items from a .NET Collection.

share|improve this answer

try:

Session.Contents.RemoveAll()
share|improve this answer

Use Session.Clear() or Session.RemoveAll() Method

Session.Clear()
    or
 Session.RemoveAll()
share|improve this answer

You have to use

this.Page.Session.Clear();

Abandon is for the current session only.

share|improve this answer

There are three methods that can remove session variables

Session.Clear()
Session.RemoveAll()
Session.Abandon()

Clear() and RemoveAll() perform the same thing: remove the session variables but keep the current session in memory. Whereas, Abandon() ends the current session.

share|improve this answer
i have applied all of them to do this thing.... Thank you all – Ram Aug 31 '12 at 4:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.