protected void Page_Load(object sender, EventArgs e) { gvData.DataSource = ReportMappingConstant.getVoucherLedgerDS(); gvData.DataBind(); if (this.hf.Value != string.Empty) { this.ReportViewer1.Report = ReportMappingConstant.getReportInstance(this.hf.Value); this.ReportViewer1.DataBind(); } }
protected void Page_Load(object sender, EventArgs e) { ASPxComboBox1.DataSource = new[] { "Tháng 1", "Tháng 2", "Quý 1", "6 tháng đầu năm" }; ASPxComboBox1.DataBind(); gvData.DataSource = ReportMappingConstant.getDiaryLedgerDS(); gvData.DataBind(); if (this.hf.Value != string.Empty) { this.ReportViewer1.Report = ReportMappingConstant.getReportInstance(this.hf.Value); this.ReportViewer1.DataBind(); } }