BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
Hi Markus,
Thanks for using Syncfusion products.
We are able to reproduce the reported issue “XlsIO Saved file does not open in MS Excel” from our side. We suspect that this could be an issue and send to the development team for further analysis. We request you to create a new incident to further follow up on this issue.
Direct-Trac Link: Login
Please let us know if you need any clarifications.
Thanks,
Manikandan M.
Hi Christos,
Thank you for Syncfusion products.
The memory issue reported earlier was an usage issue. This issue can be resolved by resetting the memory stream position to zero before copying the memory stream to file stream. Please follow the below code snippet to resolve the issue.
Code Snippets:
MemoryStream ms = new MemoryStream(); workbook.SaveAs(ms); //Resetting Memory stream position. ms.Position = 0; FileStream file = new FileStream(Server.MapPath("App_data/Output.xlsx"), FileMode.Create, System.IO.FileAccess.Write); byte[] bytes = new byte[ms.Length]; ms.Read(bytes, 0, (int)ms.Length); file.Write(bytes, 0, bytes.Length); file.Close(); ms.Close(); |
If you are unable to resolve the issue, please share us your entire scenario and the code snippet which will be helpful for us to give you a prompt solution.
Please let us know if you have any concerns.
Regards,
Dilli babu.