using System; using System.Web.UI; using System.Web.Security; public partial class Root_Logout : Page { protected void Page_Load(object sender, EventArgs e) { FormsAuthentication.SignOut(); Response.Redirect("/login.aspx", true); } }