using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace Newdelhibarassocia.cms { public partial class Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { Session.Abandon(); Session.RemoveAll(); } } protected void Button1_Click(object sender, EventArgs e) { if (TextBox1.Text.Trim() == "admin" && TextBox2.Text.Trim() == "patialahouse12345") { Session["Admin"] = "admin"; Response.Redirect("AddGallary.aspx"); } else { RegisterStartupScript("12", ""); } } } }