Multiple choice technology web technology

In ASP.NET the sessions can be dumped by using

  1. Session.Dump

  2. Session.Abandon

  3. Session.Exit

  4. None of the Above

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

In ASP.NET, Session.Abandon is used to end the current session and release its resources. This method cancels the session and allows the session state to be garbage collected. Dump and Exit are not valid methods on the Session object - Abandon is the correct method for session termination.