Hello,
When I try to open the attached document it keeps loading forever and doesn't load the spreadsheet.
Please notice that I'm using the following snippet to open the spreadsheet: public ActionResult GetExcel(CustomParams param, int id)
{
HttpPostedFileBase formFile = new MemoryPostedFile(ConvertStreamToBytes(param.fileStream), param.FileName, "xlsx");
OpenRequest openRequest = new OpenRequest();
var postedFile = new HttpPostedFileBase[1] { formFile };
openRequest.File = postedFile;
return Content(Workbook.Open(openRequest)); // this line takes too long to open the spreadsheet
}
The thing is other documents open but take a lot of time on the last line.
But for the attached document it just keeps loading forever.
Please help with this as soon as possible.
Thanks,
Attachment:
Test_d5c386d8.rar