I have web application & I am using Aspose to create pdf using Excel template file with around 15 columns. I am able to create pdf successfully but it is taking too much time for this. eg. for 28K records it is taking 2.5 to 3 min.
Using this approach -
WorkbookDesigner wd = new WorkbookDesigner();
wd.Workbook = new Workbook(sbPath.ToString());
wd.SetDataSource(ds);
wd.Process();
wd.Workbook.Save(Page.Response, _reportFileName, ContentDisposition.Attachment, saveOpt);
Any inputs / steps to improve / increase performance ?