Exemplo n.º 1
0
        private void BindDMBaoCaoCombo()
        {
            cboDanhMucBC.Items.Clear();

            DataTable v_dt = BaoCaoController.GetDMBaoCao();

            Utils.BuildDropdownlist(ref cboDanhMucBC, v_dt, true);
        }
Exemplo n.º 2
0
        private void LoadDSBaocaoGrid()
        {
            DataTable v_dt = BaoCaoController.GetDSBaoCao(cboDanhMucBC.SelectedValue);

            if (null != v_dt)
            {
                rptList.DataSource = v_dt;
                rptList.DataBind();
            }
        }