水晶报告会抛出错误“未指定报告名称”。
我正在使用
非常感谢帮助。
答案 0 :(得分:0)
尝试在<Report>
中添加<CrystalReportViewer>
代码,如下所示:
<CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server" AutoDataBind="True" ReportSourceID="CrystalReportSource1" />
<CR:CrystalReportSource ID="CrystalReportSource1" runat="server">
<Report FileName="CrystalReport.rpt">
</Report>
</CR:CrystalReportSource>
或强>
动态添加Crystal Reports源代码:
ReportDocument reportdocument = new ReportDocument();
reportdocument.Load(Server.MapPath("CrystalReport.rpt"));
reportdocument.SetDatabaseLogon("Username","Password","Server","Database");
CrystalReportViewer1.ReportSource = reportdocument;