我有一个简单的 .RDLC 报告,它没有显示在它的 ASPX 页面上。我的 ASPX 代码是:
<rsweb:ReportViewer ID="rvReport" runat="server" Height="500px" Width="100%"
Font-Names="Verdana" Font-Size="8pt" InteractiveDeviceInfos="(Collection)"
WaitMessageFont-Names="Verdana" WaitMessageFont-Size="14pt">
<LocalReport ReportPath="reports\rptAttendee.rdlc">
</LocalReport>
</rsweb:ReportViewer>
在 .cs 文件中,我从我的 Entity Framework 上下文创建一个数据集并将其转换为 ReportData Source,如下所示:
rvReport.LocalReport.DataSources.Clear();
ReportDataSource dataSource = new ReportDataSource("dsAttendees", attendees);
rvReport.LocalReport.DataSources.Add(dataSource);
rvReport.LocalReport.Refresh();
我已经确认数据源是用数据创建的,并且报表视图在添加数据源后注册数据源。
在 RDLC 文件上,我创建了一个具有相同名称 (dsAttendees) 和完全相同的列/类型的空数据源。当我运行 Web 应用程序时,ASPX 页面不显示报告。检查页面,我确实看到了报表查看器控件,但它是空的;即使是非数据绑定文本和工具栏也不会出现。
我怀疑问题是 RDLC 文件没有获取数据源。有没有我遗漏的步骤?