Hi, I'm developing a Web application with VS2005 (VB.NET) and I just bought Aspose Cell for .NET (release 4.9.0). I'm testing it in my application and in a ASPX page I added a simple button with the following few code lines (to convert an Excel file into PDF file):
Dim workbook As Aspose.Cells.Workbook = New Aspose.Cells.Workbook()
workbook.Open(PathExcel)
workbook.Save(PathPDF, Aspose.Cells.FileFormatType.Pdf)
Sometimes, I noticed a very slow loading page, as the page was recompiled every time, although no change was made. Any ideas ? where am I doing wrong ?
Regards
Stefano