hi,
Session["SessionVal"] = "test";
You can use session variable. When where user's session expires, it’s automatically cleared and also you can clear the all the session values in Session_End() in web.config. void Session_End(object sender, EventArgs e)
{
Session.Abandon(); or
Session.Clear();
}