Workbook.save savetype.openInBrowser to a new window?

Hi,

Man, I love aspose cells! I'm converting an excel spreadsheet to pdf and pushing it back to a client browser in 2 lines of code!

So, I'm using:

Workbook.Save("Report.pdf", SaveType.OpenInBrowser, FileFormatType.Pdf, Page.Response)

My Question: is there a way to direct that output to a new browser window?

thanks,

da

Hi,

Well, this is the routine of the browser. I think you may change your code to:

Workbook.Save("Report.pdf", SaveType.OpenInExcel, FileFormatType.Pdf, Page.Response)

Response.End()

Thank you.