In this article I will explain how to clear session in asp.net with an example. If you want to remove the specific session then you can set it as null or “”. Here I have set it for userId to null(e.g: Session["userId"] = null;). Session.Abandon(); will destroy the session.
You could use it for example when the user logs out.
public ActionResult LogOut()
{
FormsAuthentication.SignOut();
Session.Abandon(); // it will clear the session atthe end of request
return RedirectToAction("Login", "Admin", new { area = "" });
}
Post your comments / questions
Recent Article
- 'ionic' is not recognized as an internal or external command
- OSError: cannot open resource - Python
- Python read file line count
- How to Encode & Decode using Base64 in Python?
- Unspecified error-The function is not implemented. Rebuild the library with Windows, GTK+ 2.x or Cocoa support.
- How to generate a Captcha verification code image with Python?
- How to show an image using path python PIL?
- How to remove Background from the images using Python?
Related Article