如何在c#中知道rdlc​​报告中的本地报告路径

时间:2017-03-29 08:52:19

标签: c# rdlc

我想检查应用程序中正在调用的报告。 意味着我想知道rdlc​​的本地报告路径。

我现在正在使用:

reportViewer.LocalReport.ReportPath = reportpath;

但是我得错误了:

  

本地报告处理期间出现错误

2 个答案:

答案 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";