未指定报告名称--Crystal报告RAS 9

时间:2012-08-06 19:50:11

标签: crystal-reports

水晶报告会抛出错误“未指定报告名称”。

我正在使用

  1. RAS 9
  2. ParameterField.asp
  3. ActivexViewer.asp
  4. rptserver.asp(它没有抓取此文件中的reportname)
  5. 非常感谢帮助。

1 个答案:

答案 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;