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();