使用reportviewer显示报告时遇到问题。我正在使用存储过程以编程方式生成报告,如果我调试,报告也会有数据。
report.DataSource = Adapter.ExceptionProjectedQuotePastProjectedCloseDate(GroupList.SelectedText.ToString(), TimePeriodList.SelectedText.ToString(), startDateTimePicker.Value.ToString(), endDateTimePicker.Value.ToString());
Telerik.Reporting.InstanceReportSource reportSource = new Telerik.Reporting.InstanceReportSource();
reportSource.ReportDocument = report;
reportViewer1.ReportSource = reportSource;
reportViewer1.RefreshReport();
这是我用来生成报告的代码,我真的很困惑。