Hi,
I create one workbook
Workbook wb = new Workbook();
wb.Worksheets.Add();
Worksheet ws = wb.Worksheets[0];
ws.Cells.ImportDataTable(datatable,true,"A1");
////// wb.Save("d:\\test.xls");
Now with out saving this file I want to show the options to user this work book has to open ,save and cancel,if he opens directly open ,else save into his system,
Is it possible using aspose.cells to download option like open, save,and cancel
In .net
like this,same is there any way using aspose.cells to direct download options,help me
Response.Clear();Response.Charset = "";
Response.AddHeader("Content-Disposition", "attachment;filename=" + "worldmapdownload_" + DateTime.Now.ToShortDateString().Replace(":", "").Replace(@"/", "").Replace(" ", "") + ".xls");
Response.TransmitFile("d:\\test.xls");
Response.End();