protected void BtnAceptar_Click(object sender, EventArgs e) { String Usuario, Pass; try { Usuario = user.Text; Pass = password.Text; if (Usuario == "admin" && Pass == "123") { Response.Redirect("/home.aspx"); } else { cAlert a = new cAlert(); a.AlertWarning("Datos Invalidos"); } } catch (Exception ex) { } }