protected void Func_BuscarUsuario() { ClsUsuario ObjUsuario = new ClsUsuario(); ObjUsuario.id = TxtIdentificacion.Text; ObjUsuario.Func_ConsultarClientes(); if (ObjUsuario.sw == 1) { TxtNombres.Text = ObjUsuario.nombre; TxtApellidos.Text = ObjUsuario.apellidos; CbxSexo.SelectedValue = Convert.ToInt32(ObjUsuario.sexo); CbxEstado.SelectedValue = Convert.ToInt32(ObjUsuario.estado); TxtDireccion.Text = ObjUsuario.direccion; TxtCorreo.Text = ObjUsuario.correo; TxtTelefono.Text = ObjUsuario.telefono; TxtMovil.Text = ObjUsuario.movil; LblUser.Text = ObjUsuario.usuario; TxtUsuario.Text = ObjUsuario.usuario; string foto; foto = ObjUsuario.foto; PtbFoto.Image = Image.FromFile(foto); } else { MessageBox.Show("La persona no se encuentra registrada"); } }
protected void Func_ValidarUsuario() { ClsUsuario ObjValidar = new ClsUsuario(); ObjValidar.id = TxtIdentificacion.Text; ObjValidar.Func_ConsultarClientes(); if (ObjValidar.sw == 0) { // Func_GuardarUsuario(); MessageBox.Show("La persona ha sido registrada exitosamente"); } else { MessageBox.Show("La persona ya esta registrada"); } }