Hi,
I have this code which works:
workbook.Save(this.Response, "Report.xlsx", ContentDisposition.Inline, new XlsSaveOptions());
However the following code does not work (no error - just does'nt result in PDF)
workbook.Save(this.Response, "Report.pdf", ContentDisposition.Inline, new PdfSaveOptions(SaveFormat.Pdf));
Any suggestions appreciated.