我正在尝试在SharePoint 2007中加载.rdlc文件,但它没有加载,并且该报告页面上出现以下错误。
下面提到的是我使用过的代码。 请帮助我做什么修改。
if (!Page.IsPostBack)
{
this.EnableViewState = true;
rptViewer.Reset();
rptViewer.LocalReport.EnableHyperlinks = true;
rptViewer.KeepSessionAlive = true;
rptViewer.EnableViewState = true;
rptViewer.ProcessingMode = ProcessingMode.Local;
rptViewer.LocalReport.ReportPath = @"C:\New folder\RDLC\RiskReports\RiskReports\Report1.rdlc";
}
这将是一个很大的帮助和赞赏。