【问题标题】:I got the problem in Crystal Report- Error Messsage:Load report failed我在 Crystal Report 中遇到问题 - 错误消息:加载报告失败
【发布时间】:2010-05-26 20:04:04
【问题描述】:

我在 Crystal Report 中遇到问题 - 错误消息:加载报告失败。

如何解决这个问题??

【问题讨论】:

  • @ayps 详细说明你的错误报告......

标签: asp.net crystal-reports c#-3.0


【解决方案1】:

您可以在 DataBinding 和 Navigate 方法中调用 show data on report。

protected void CrystalReportViewer1_DataBinding(object sender, EventArgs e)
{
    this.ShowReportData();
}  

protected void CrystalReportViewer1_Navigate(object source,  CrystalDecisions.Web.NavigateEventArgs e)
{
    this.ShowReportData();
}

【讨论】:

    【解决方案2】:

    如果您的报告运行了一段时间然后跌倒,请确保您将其丢弃......

    if(myReport != null)
    {
        myReport .Close();
        myReport .Dispose();
    }
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2016-08-01
      • 1970-01-01
      • 1970-01-01
      • 2013-05-02
      相关资源
      最近更新 更多