How do you explicitly kill a user's session in ASP.Net?
-
Session.Close()
-
Session.discard()
-
Session.Abandon()
-
Session.Exit()
C
Correct answer
Explanation
In ASP.NET, the Session.Abandon() method is the standard way to destroy a user's session and release its resources. Alternative methods like Session.Close(), Session.discard(), or Session.Exit() do not exist as valid session termination APIs in the framework.