我想检查应用程序中正在调用的报告。 意味着我想知道rdlc的本地报告路径。
我现在正在使用:
reportViewer.LocalReport.ReportPath = reportpath;
但是我得错误了:
本地报告处理期间出现错误
答案 0 :(得分:0)
试试这个
ReportViewer1.LocalReport.DataSources.Add(reportDataset);
ReportViewer1.LocalReport.ReportPath = Server.MapPath("Reports/RPT_Reports.rdlc");
答案 1 :(得分:0)
reportViewer1.LocalReport.ReportEmbeddedResource = "YourWindowsFormsCSharpProject.ReportsFolder.Report1.rdlc";