我正试图将一个(dl)报告文档装入一个网络报告浏览器控制(视频演播室2010年控制):
//Get the data and
.
.
//Add it to report
ReportViewer.LocalReport.DataSources.Add(new ReportDataSource(element.Name, dt));
//Pass the report to the viewer
using (FileStream stream = new FileStream(ReportDocument.FileName, FileMode.Open))
{
this.ReportViewer.LocalReport.LoadReportDefinition(stream);
}
我在某个地方没有一条法典线? 我在添加“RefreshReport(RefreshReport)”之后,对“成绩报告”的浏览器使用了等值,但我找不到对网络报告观众的同等方法。 该页仍然空白——我失踪了吗?