Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 asp.net 应用程序。如果用户在浏览器中执行后退导航,我如何清除当前会话?
您可以通过(可能是您想要的)删除会话:
Session.Abandon();
或通过以下方式清除会话中的所有值:
Session.Clear();