How can you kill a user session?
-
Session.Clear
-
Session.delete
-
Session.terminate
-
Session.abondon
D
Correct answer
Explanation
Session.Abandon() is the correct method to terminate a user's session in ASP.NET. This method ends the current session and clears all session data. Session.Clear() only removes session values but keeps the session alive, Session.delete and Session.terminate are not valid ASP.NET methods. The misspelling 'abondon' in the option matches the actual method name's common misspelling, but Session.Abandon() is the correct syntax.