Crystal Report错误:已配置最大报表处理作业限制

时间:2017-01-25 04:55:30

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

我在打开报告时遇到错误:

The maximum report processing jobs limit configured by your system administrator has been reached

我搜索了互联网,几乎每个人都在建议解决方案:

ReportDocument.Close();
ReportDocument.Dispose();

我已经尝试过但是我几乎每天都在生产服务器上遇到同样的错误。我的代码如下:

ReportDocument rptDoc = new ReportDocument();
protected void Page_Load(object sender, EventArgs e)
{
    ShowReport();
}

protected override void OnUnload(EventArgs e)
{
     if (rptDoc != null)
     {
         rptDoc.Close();
         rptDoc.Dispose();
     }

     base.OnUnload(e);
}

protected void ShowReport()
{
      rptDoc.Load(Server.MapPath("~/Reports/RptFiles/rptPrint.rpt"));
      //Rest of the code
}

有人可以指出我做错了吗?

1 个答案:

答案 0 :(得分:0)

你试过这个:

转到:运行> regedit> HKEY_LOCAL_MACHINE>软件> SAP BUSINESS OBJECT .....

enter image description here