private void CargaGrilla(string idJuico) { DataTable table = null; table = ConsultasEspecificas.MostrarDetalleGastos(idJuico); this.Session["Excel_gas_tos"] = table; this.Grilla.DataSource = table; this.Grilla.DataBind(); }
private void MostrarDetalleGastos() { gvDetalleGastos.DataSource = ConsultasEspecificas.MostrarDetalleGastos(hdfIdJuicio.Value); gvDetalleGastos.DataBind(); }