Excel can not able to open the file...

Hi Team,

Thank you very much for your mails.


Some how I have managed to execute an application. But now, excel can not able to open the file.

Please find the attached document, which contains the the steps, whatever I am following in source code.

Requesting you, kindly give me the solution for this issue.


Regards,
Suresh Thota

Attachment: MyAtt_a9d2d5e5.zip

2 Replies

IN Ishwarya Narayanan Syncfusion Team December 1, 2015 11:49 AM UTC

Hi Suresh, 

This error occurs when there is mismatch between the file format and its extension. This can be resolved by setting workbook version set to the required version.

 

·         To save a workbook in Excel2003 format, set the workbook version to Excel97to2003 and save the file with extension ‘.xls’ i.e. binary file format.

·         To save a workbook in Excel 2007/Excel2010/Excel2013 formats, set the workbook version to Excel2007/Excel2010/Excel2013 respectively and save the file with extension ‘.xlsx’ i.e. open xml file format.

 

The below code example illustrates the same.

string fileName = Server.MapPath("App_data/Sample.xls");

IWorkbook workbook = application.Workbooks.Open(fileName, ExcelOpenType.Automatic);

           

IWorksheet sheet = workbook.Worksheets[0];

workbook.Version = ExcelVersion.Excel2007;

 

workbook.SaveAs(this.TextBox1.Text + ".xlsx", ExcelSaveType.SaveAsXLS, Response, ExcelDownloadType.PromptDialog, ExcelHttpContentType.Excel2007);

 

 

We have provided a sample as per your scenario in the below link for your reference. Kindly try with this and let us know.

 

Sample Link:

http://www.syncfusion.com/downloads/support/directtrac/general/ze/XlsIO_Sample226675246.zip

 

Please let us know if you need any clarification. 

Regards,

Ishwarya N



RJ Rilfanayasmin Jamal Nasar Syncfusion Team December 8, 2015 05:16 AM UTC

From: suresh thota [mailto:[email protected]]
Sent: 12/02/2015 01:22 AM
To: Syncfusion Support <[email protected]>
Subject: Re: Syncfusion support community forum 121309, Excel can not able to open the file..., has been updated.


Hi Team,


Thank you for your reply.


Yes. I have seen from one the the SyncFusion URL. Its working now.


Thank you very much for your support.




Loader.
Up arrow icon