protected void Page_Load(object sender, EventArgs e)
    {
        Session.Abandon();
        Session.Clear();
        HttpContext.Current.Response.Cache.SetCacheability(HttpCacheability.NoCache);
        Response.Cache.SetAllowResponseInBrowserHistory(false);
        FormsAuthentication.SignOut();
        Response.AddHeader("Refresh", Convert.ToString((Session.Timeout * 5) - 120));
        Response.Redirect("login.aspx");
    }