Exemplo n.º 1
0
 protected void btnVerificar_Click(object sender, EventArgs e)
 {
     if (IsValid)
     {
         if (ControlConfig.BuscarUsuario(txtUsuarioActual.Text.ToLower(), txtcontraseñaactual.Text.ToLower()))
         {
             if (!_isRefresh)
             {
                 txtcontraseñaNuevaR.Enabled = true;
                 txtcontraseñaNueva.Enabled  = true;
                 txtusernuevo.Enabled        = true;
                 BtnModificar.Enabled        = true;
                 txtcontraseñaNuevaR.Focus();
             }
             else
             {
                 Response.Redirect("MenuUsuario.aspx");
             }
         }
         else
         {
             ScriptManager.RegisterStartupScript(this, GetType(), "Popup", "erroralert();", true);
         }
     }
 }
Exemplo n.º 2
0
 protected void BotonIngresar_Click(object sender, EventArgs e)
 {
     if (IsValid)
     {
         if (ControlConfig.BuscarUsuario(TxtUsuario.Text.ToLower(), TxtContraseña.Text.ToLower()))
         {
             Session["Login"] = 1;
             Response.Redirect("index.aspx");
         }
         else
         {
             ScriptManager.RegisterStartupScript(this, GetType(), "Popup", "erroralert();", true);
         }
     }
 }