예제 #1
0
        private void CargaGrilla()
        {
            DataTable table = null;

            table = ConsultasEspecificas.ConsultaTablero(this.txtCliente.Text.Replace(".", ""), this.txtRut.Text.Replace(".", ""), this.tribunal.SelectedValue, this.estadocobranza.SelectedValue, this.producto.SelectedValue, this.tipocobranza.SelectedValue, this.txtProcurador.Text.Replace(".", ""), this.txtNroOperacion.Text, this.abogado.SelectedValue);
            this.Session["Excel"]  = table;
            this.Grilla.DataSource = table;
            this.Grilla.DataBind();
        }