Clear the Session


To remove the Session in ASP.NET c#

Remove the session



hi friends,


these lines are used for remove all session values


Session.RemoveAll();
Session.Abandon();
Session.Clear();




if you want to remove value of particular session so you use this line


Session["session name"]=null;


//or


Session["session name"].clear();


Related Articles

More articles: Clear session variable Remove session Session variable

Comments

No responses found. Be the first to comment...


  • Do not include your name, "with regards" etc in the comment. Write detailed comment, relevant to the topic.
  • No HTML formatting and links to other web sites are allowed.
  • This is a strictly moderated site. Absolutely no spam allowed.
  • Name:
    Email: