水晶报表抛出错误“未指定报表名称”。
我在用
- RAS 9
- 参数字段.asp
- ActivexViewer.asp
- rptserver.asp(它没有获取此文件中的报告名称)
非常感谢您的帮助。
水晶报表抛出错误“未指定报表名称”。
我在用
非常感谢您的帮助。
尝试像这样添加<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;