Maximum report processing jobs limit
Use Below method this will help you
ReportDocument crystalReport = new ReportDocument();
protected void Page_Unload(object sender, EventArgs e)
{
crystalReport.Close();
crystalReport.Dispose();
}
On each load you have to dispose your crystal session
No comments:
Post a Comment