Hi,
Workbook wb = new Workbook();
wb.Worksheets.Add();
Worksheet ws = wb.Worksheets[0];
ws.Cells.ImportDataTable(deleteRecords, true, "A1");
wb.Save(ms, FileFormatType.Default);
wb.Open(ms);
By using this I have to open the file directly withoust saving any where,By saving only in streams,we have to give the option to user in that file open or save like excel file menu.
Is it possible using aspose