What is the difference between destroying a session and removing its values? Can you please provide an example demonstrating this?
I searched for this question, but
When you Abandon() a Session, you (or rather the user) will get a new SessionId (on the next request). When you Clear() a Session, all stored values are removed, but the SessionId stays intact.
Abandon()
Clear()