1

我正在使用 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();

但我无法查看报告页面上的数据。请帮忙。如果您有任何有用的链接,请给我,因为我对报告很陌生。谢谢

4

1 回答 1

0

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

ReportViewer1.ProcessingMode = ProcessingMode.Local;
ReportViewer1.LocalReport.ReportPath = Server.MapPath("~/Report.rdlc");
于 2014-09-19T10:14:25.183 回答