ASP.NET:如何删除所有用户的所有会话变量?

ASP.NET:如何删除所有用户的所有会话变量?

问题描述:

我们有ASP.NET应用程序,并希望所有用户删除所有会话的所有会话变量?

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();

Session.Abandon();

我们需要清除从其他用户会话的会话变量呢?

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

您可以不明确所有会话,而不是一个Fing头客场回收app_pool,它会自动清除会话。看到这里 - >

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

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