Esempio n. 1
0
        protected void BindData()
        {
            var biz        = new BLL.DataCenterBiz();
            var BindConfig = biz.GetConfigPrint(this.iasgroupCode);

            gvConfigPrint.DataSource = BindConfig.DataResponse;
            gvConfigPrint.DataBind();
        }
Esempio n. 2
0
        protected void BindDataRecordPerPage()
        {
            var biz = new BLL.DataCenterBiz();
            var BindRecordPerPage = biz.GetConfigPrint(this.iasgroupCodeRecordPerPage);

            if (BindRecordPerPage.DataResponse.Tables[0].Rows.Count > 0)
            {
                DataRow drBindRecordPerPage = BindRecordPerPage.DataResponse.Tables[0].Rows[0];
                txtRecordPerBillPayment.Text = drBindRecordPerPage["ITEM_VALUE"].ToString();
            }
        }