Login Security ASP.Net

<%@ Page %>

  private void Logout_Click(object sender, System.EventArgs e)
  {
    System.Web.Security.FormsAuthentication.SignOut();
    Message.Text="You have been logged out.";
    Message.Text+="";
  }


  
    Creating a Simple Forms Authentication Logout Page
  
  
    
      Logout