Support,
OS: Windows 10 Enterprise
: .Net framework 4.7.2
We have licensed Spire.XLS Pro Edition Version:9.7 and when we generate the xls file by using the Spire.XLS in console .net application: using code below:
wk.SaveToFile(targetFileName, Spire.Xls.FileFormat.Version2016);
the generated file has only 65535 rows out of 77405 Is there an limitation to 65535 rows for our version ?
but when we use the the same code in .net web application using the code below:
System.IO.MemoryStream stream = new System.IO.MemoryStream();
wk.SaveToStream(stream, Spire.Xls.FileFormat.Version2016);
Byte[] binaryDataArray = stream.ToArray();
Response.ClearHeaders();
Response.BufferOutput = true;
Response.Charset = "utf-8";
Response.ContentEncoding = System.Text.Encoding.UTF8;
Response.Buffer = true;
Response.ContentType = "application/excel;";
Response.AddHeader("content-disposition", $"attachment;filename=DirectBillingReport_{DateTime.Now.Date}.xlsx");
Response.BinaryWrite(bynaryDataArray);
Response.End();
it generates rows number correctly.