private void cargar_GridView_BITACORA() { int ID_SOLICITUD = Convert.ToInt32(TextBox_ID_SOLICITUD.Text); regRegsitrosHojaVida _regRegsitrosHojaVida = new regRegsitrosHojaVida(Session["idEmpresa"].ToString(), Session["USU_LOG"].ToString()); DataTable tablaRegRegistro = _regRegsitrosHojaVida.ObtenerPorIdSolicitud(ID_SOLICITUD); GridView_BITACORA.DataSource = tablaRegRegistro; GridView_BITACORA.DataBind(); Panel_BITACORA_HOJA.Visible = true; }
private void cargar_datos_bitacora(DataRow filaInfoSolicitud) { int ID_SOLICITUD = Convert.ToInt32(filaInfoSolicitud["ID_SOLICITUD"]); regRegsitrosHojaVida _regRegsitrosHojaVida = new regRegsitrosHojaVida(Session["idEmpresa"].ToString(), Session["USU_LOG"].ToString()); DataTable tablaRegRegistro = _regRegsitrosHojaVida.ObtenerPorIdSolicitud(ID_SOLICITUD); if (tablaRegRegistro.Rows.Count > 0) { Mostrar(Acciones.Bitacora); GridView_BITACORA.DataSource = tablaRegRegistro; GridView_BITACORA.DataBind(); } }