ASP.NET: How to delete all session variables from all users

asp.netsession

We have ASP.NET application and want to delete all session variables from all sessions from all users?

I mean not to delete session variables from current session only using:

Session.Clear();

or:

Session.Abandon();

We need to clear the session variables from other user's session as well?

Best Answer

You cannot clear all session, instead fing a away to recycle app_pool which will automatically clear the sessions. See here-->

https://stackoverflow.com/a/9470372/823161