Ejemplo n.º 1
0
        private void DBBind()
        {
            Hashtable htapp   = (Hashtable)Application["appconf"];
            string    strcons = (string)htapp["cons"];

            BusiComm.BusiQuery bq = new BusiComm.BusiQuery(strcons);
            DataTable          dt = bq.GetExpInvList();

            Session["ExpInvList"]     = dt;
            this.DataGrid1.DataSource = dt;
            this.DataGrid1.PageSize   = 10;
            this.DataGrid1.DataBind();
        }