How can I destroy a session (Session[\"Name\"]) when the user clicks the logout button?
I\'m looking through the ASP.NET API Reference on MSDN and it doesn\'t seem t
Session.Abandon() this will destroy the data.
Session.Abandon()
Note, this won't necessarily truly remove the session token from a user, and that same session token at a later point might get picked up and created as a new session with the same id because it's deemed to be fair game to be used.