我有一个reportviewer。我想动态生成一个数据表并将其设置为我的报告查看器的数据源。报表查看器不显示数据。我的代码如下:
ReportViewer1.ProcessingMode = ProcessingMode.Local;
ReportViewer1.LocalReport.ReportPath = "report1.rdlc";
ReportDataSource rdS = new ReportDataSource("report", dt);
ReportViewer1.LocalReport.DataSources.Add(rdS);
有什么建议么?