朋友们,我用c#开发了一个简单的应用程序,它有两个rdlc报告
我使用下面的代码将数据源绑定到报告查看器
this.reportViewer1.LocalReport.ReportPath = @"C:\Documents and Settings\Administrator\My Documents\Visual Studio 2008\Projects\reports\reports\Report1.rdlc";
reportViewer1.LocalReport.DataSources.Clear();
reportViewer1.LocalReport.DataSources.Add(new ReportDataSource("customer", dt.Tables[0])) ;
this.reportViewer1.RefreshReport();
但是当报告生成时,它是空报告,没有数据将显示,任何意见???