I have a problem when i want to save an excel file more than one time with Aspose.Cells
The second file is empty : private WorkbookDesigner mExcelFile = null;
mExcelFile = new Aspose.Cells.WorkbookDesigner();
mExcelFile.Open((MemoryStream)mFiles.FileTemplate);
mExcelFile.Save(@"c:\1.xls", Aspose.Cells.FileFormatType.Excel2000);
mExcelFile.Save(@"c:\2.xls", Aspose.Cells.FileFormatType.Excel2000);
How can i save a file more than one time ?
Thanks