我已经填写了数据表。我想在报告中显示它。我正在这样做:
ReportDataSource source = new ReportDataSource("dtss", dt);
ReportViewer1.LocalReport.DataSources.Clear();
ReportViewer1.LocalReport.DataSources.Add(source);
ReportViewer1.DataBind();
ReportViewer1.LocalReport.Refresh();
但是当我尝试构建时,我得到了错误:
数据集“DataSet1”指的是不存在的数据源“”。
我错过了什么?使用 Webforms(ASP.net)