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.
|
Use From MSDN - HttpSessionState.Clear Method Removes all keys and values from the session-state collection. Call it like :
|
|||||
|
I'm fairly sure you can't do this, short of recycling the application. The currently accepted answer suggests using Why are there two methods |
|||
|
|
|
Use Session.Clear() or Session.RemoveAll() Method
|
|||
|
|
|
You have to use
Abandon is for the current session only. |
|||
|
|
|
There are three methods that can remove session variables
|
||||
|
|
Session.Clearonly clears the current session - see my answer. – Joe Aug 29 '12 at 10:44