DataSet中的数据未显示在reportviewer中,该数据显示何时运行调试

时间:2016-11-04 10:57:27

标签: c# reportviewer

作为标题,当我运行调试时,reportviewer会正确显示结果。但是当我将其部署到网站时,它没有在报告中显示任何数据(所有标题,参数都正确显示)。
我错过了什么?

这是我的代码:

rptViewer1.LocalReport.DataSources.Clear();
ReportDataSource rptData = new ReportDataSource("DataSet1", dt);
LocalReport r = new LocalReport();
r.ReportPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "~/ReportForm/LectureReport.rdlc");
r.DataSources.Add(rptData);
ReportParameter p = new ReportParameter("Title", txtName.Text);
rptViewer1.LocalReport.SetParameters(new ReportParameter[] { p });
rptViewer1.LocalReport.DataSources.Add(rptData);
rptViewer1.LocalReport.ReportPath = Server.MapPath("~/ReportForm/LectureReport.rdlc");
rptViewer1.LocalReport.Refresh();

0 个答案:

没有答案