protected void btnModificar_Click(object sender, EventArgs e) { int rut = Int32.Parse(txt_rut.Text); var calendario = (cal_FechaNacimiento.SelectedDate); var fechasinhora = calendario.ToString("yyyy-MM-dd HH:mm:ss.000"); usuario a = d.BuscarPorRut(rut); if (a != null) { txt_rut.Text = a.rut.ToString(); } txt_clave.Text = a.clave; txt_Nombre.Text = a.nombres; txt_Apellido.Text = a.apellidos; txt_Telefono.Text = a.telefono.ToString(); txt_Direccion.Text = a.direccion; txt_Email.Text = a.email; drp_EstadoCivil.Text = a.estadoCivil.ToString(); txt_UsrTipo.Text = a.usrTipo; drp_Nacionalidad.Text = a.nacionalidad.ToString(); //cal_FechaNacimiento = a.fechaNacimiento.ToString(); txt_Experiencia.Text = a.experiencia; txt_Presentacion.Text = a.cartaPresentacion; txt_rut.Enabled = false; }
protected void btnBuscar_Click(object sender, EventArgs e) { int rut = Int32.Parse(txt_rut.Text); /*string clave = txt_clave.Text; * string nombre = txt_Nombre.Text; * string apellido = txt_Apellido.Text; * int telefono = Int32.Parse(txt_Telefono.Text); * string direccion = txt_Direccion.Text; * string email = txt_Email.Text; * int estadoCivil = Int32.Parse(drp_EstadoCivil.Text); * string tipousuario = usrtipo.Text; */ usuario a = d.BuscarPorRut(rut); if (a != null) { mensajeAccion.Text = "Encntrado"; txt_clave.Text = a.clave; txt_Nombre.Text = a.nombres; txt_Apellido.Text = a.apellidos; txt_Telefono.Text = a.telefono.ToString(); txt_Direccion.Text = a.direccion; txt_Email.Text = a.email; drp_EstadoCivil.Text = a.estadoCivil.ToString(); txt_UsrTipo.Text = a.usrTipo; //drp_Nacionalidad.Text = a.nacionalidad.ToString(); drp_Nacionalidad.DataTextField = "nacionalidad"; drp_Nacionalidad.DataBind(); // cal_FechaNacimiento = a.fechaNacimiento; txt_clave.Enabled = true; txt_Nombre.Enabled = true; txt_Apellido.Enabled = true; txt_Telefono.Enabled = true; txt_Direccion.Enabled = true; txt_Email.Enabled = true; } else { mensajeAccion.Text = " No Encontrado"; } }