मैं क्रिस्टल रिपोर्ट का उपयोग कर रहा हूँ और मैं त्रुटि प्राप्त:अधिकतम रिपोर्ट प्रसंस्करण नौकरियों आपके सिस्टम व्यवस्थापक द्वारा कॉन्फ़िगर सीमा पूरी होने के
The maximum report processing jobs limit configured by your system administrator has been reached
मैं खोज की है stackoverflow और पाया 2 विषय:
- Crystal Reports Error: The Maximum Report Processing Jobs Limit
- Crystal Reports Exception: The maximum report processing jobs limit configured by your system administrator has been reached
लेकिन जब मैं के रूप में करते हैं विषय 1, PrintJobLimit = -1 बदलें, त्रुटि अभी भी होती है।
जब मैं विषय 2 के रूप में करता हूं, तो मैंने अभी तक परीक्षण नहीं किया है क्योंकि मेरी रिपोर्ट को पृष्ठों के बीच नेविगेट करने की आवश्यकता है। ,
ReportDocument reportDocument = null;
protected override void OnInit(EventArgs e)
{
if (IsPostBack && Session["reportDocument"] != null)
{
reportDocument = (ReportDocument)Session["reportDocument"];
crvReport.ReportSource = reportDocument;
}
}
protected void Page_Load(object sender, EventArgs e)
{
reportDocument = new ReportDocument();
Session["reportDocument"] = reportDocument;
crvReport.ReportSource = reportDocument;
reportDocument.Load(Server.MapPath("~/files/Users.rpt"));
reportDocument.SetDatabaseLogon("******", "******", "*.*.*.*", "*****");
reportDocument.VerifyDatabase();
crvReport.DataBind();
}
तो मैं उतारना में reportDocument निपटान नहीं कर सकते क्योंकि सत्र [ "reportDocument"] परिवर्तन
protected void crvReport_Unload(object sender, EventArgs e)
{
if (reportDocument != null)
{
reportDocument.Close();
reportDocument.Dispose();
reportDocument = null;
GC.Collect();
}
}
तो शून्य पर मैं के बीच कैसे नेविगेट कर सकते हैं: नेविगेट करने के लिए, मैं सत्र में रिपोर्ट को बचाने के लिए है रिपोर्ट में पेज, लेकिन मुझे त्रुटि प्राप्त नहीं हुई है?
आपको बहुत बहुत धन्यवाद