hi frnd,
I need to develop a reports with a tool which can give good designing facility and performance compared to crystal reports.
well using crystal reports i can able to generate 23 reports per a second and around 1300reports per 10 minutes.
but using stimulsoft its consuming more time rather than crystal reports. its consuming around 23 minutes to generate the pdfs. i am generating pdfs for same users.but stimulsoft cosuming more time. how to reduce the time to generate.
following is the code what i have implmented.
if (ds.Tables.Count > 0)
{
foreach (DataRow DR in ds.Tables[0].Rows)
{
objStiReport.DataSources["Reportvalues"].Parameters["soa_id"].Value = DR["soa_id"].ToString(); //passing arguments
// objStiReport.DataSources["Reportvalues"].Parameters["Addresstype"].Value = "BIL"; //passing arguments
objStiReport.Compile();
objStiReport.Render(true);
StiorderDetail.Report = objStiReport;
StiorderDetail.Report.ExportDocument(StiExportFormat.Pdf, Server.MapPath("~/Reports/OrderDetails/" + DR["soa_id"].ToString() + "_1.pdf"), objStiPdfExportSettings); // generating pdf file in a given location
StiorderDetail.Dispose();
}
}
regards
ramesh
no.of pdfs generation and comparison with crystal report
Re: no.of pdfs generation and comparison with crystal report
Hello,
Please try to see the following series of articles about optimization reports on our blog:
part 1:
http://blog.stimulsoft.com/articles/optimizing-reports
part 2:
http://blog.stimulsoft.com/articles/opt ... rts-part-2
part 3:
http://blog.stimulsoft.com/articles/opt ... rts-part-3
Thank you.
Please try to see the following series of articles about optimization reports on our blog:
part 1:
http://blog.stimulsoft.com/articles/optimizing-reports
part 2:
http://blog.stimulsoft.com/articles/opt ... rts-part-2
part 3:
http://blog.stimulsoft.com/articles/opt ... rts-part-3
Thank you.