RDLC报表查看器不在报表查看器中显示数据?

时间:2012-07-28 06:44:14

标签: c# winforms reporting

我正在使用SQLITE数据库,并希望使用C#在Windows应用程序中使用报表查看器来显示报表。我的代码是

DataSet ds=rel.show_data1("site_master");
this.reportViewer1.Reset();
ReportDataSource rds = new ReportDataSource("test_rds", ds.Tables[0]);
reportViewer1.LocalReport.DataSources.Clear();
reportViewer1.LocalReport.DataSources.Add(rds);
reportViewer1.Visible = true;
reportViewer1.LocalReport.Refresh();

但我无法在报告页面上查看数据。请帮助。如果你有任何有用的链接,请给我,因为我对报道很新。感谢

1 个答案:

答案 0 :(得分:0)

我认为您没有提供报告路径

ReportViewer1.ProcessingMode = ProcessingMode.Local;
ReportViewer1.LocalReport.ReportPath = Server.MapPath("~/Report.rdlc");