RE: What method do you use to explicitly kill a user s session?
Session.Contents.Remove( variable ) is the session fuction to remove one item from the contents
< Session("myName") " " Session.Contents.Remove("myName") > Session.Contents.RemoveAll will remove all contents < Session("myName") " " Session.Contents.Remove("myName") > Session.Abandon the session state to be released when the server finishes processing the current page. < Session.Abandon >