im using asp.net crystal report……i just upload the crystal in server and comiled i got error like”The maximum report processing jobs limit configured by your system administrator has been reached”.
then i just used
protected crysview_Unload()
{
report.close();
report.dispose();
}
then i did’nt got error but when i open this in second time it cant open the crystal report……
im using asp.net crystal report……i just upload the crystal in server and comiled i
Share
You might try putting the
Close()andDispose()calls in thePage_Unloadmethod, because I think the CRViewer control may still be keeping a reference to the report in the background.I suggest taking a look at this forum post on the Microsoft ASP.NET Forums, it seems to be a common problem with Crystal Reports.