protected void btnBuscar_OnClick(object sender, EventArgs e) { try { Usuario userData = _servicioUsuarios.BuscarUsuario(txtUserName.Text.Trim()); if (userData != null) { Response.Redirect("~/FrmRecuperar.aspx?ldata=" + QueryString.Encrypt(userData.Id.ToString())); } } catch (Exception ex) { if (_lstError == null) { _lstError = new List <string>(); } _lstError.Add(ex.Message); AlertaGeneral = _lstError; } }
public bool ValidaUsuarioExiste() { try { ValidaCaptura(); if (_servicioUsuario.BuscarUsuario(txtCorreoRapido.Text.Trim()) != null) { throw new Exception("Ya existe una cuenta con estos datos"); } //if (!string.IsNullOrEmpty(txtTelefonoCelularRapido.Text.Trim())) // if (_servicioUsuario.BuscarUsuario(txtTelefonoCelularRapido.Text.Trim()) != null) // { // throw new Exception("Ya existe una cuenta con estos datos"); // } } catch (Exception ex) { throw new Exception(ex.Message); } return(false); }