IE SSL issue not allowing workbooks to be saved

This is in regards to the know HTTPS/SSL issue with Internet Explorer. I have tried the workaround listed in the documentation and in the forums and this still does not work. I am using version 4.5.0.0. Is this fixed in a later release or is there another way to get this to work?


This message was posted using Page2Forum from HTTPS/SSL Issue - Aspose.Cells for .NET

Hi,

I think you may try to use our latest version v4.8.2.x (downloading from the site: http://www.aspose.com/community/files/51/.net-components/aspose.cells-for-.net/entry215207.aspx)
to check if it works fine.

Furthermore, could you try the following sample code to check if it works fine (without involving Aspose.Cells for .NET component/API):

FileStream fs1 = new FileStream(“d:\MyBook1.xls”, FileMode.Open, FileAccess.Read);


byte[] data1 = new byte[fs1.Length];


fs1.Read(data1, 0, data1.Length);




this.Response.ContentType = “application/xls”;


Response.AddHeader(“content-disposition”, “inline; filename=book1.xls”);


Response.BinaryWrite(data1);


Response.End();




Thank you.