Grid export to CSV adds lots of null characters at the end
I see your sample https://demo.aspnetawesome.com/GridExportToExcelDemo
I tried .csv export and one page export run all ok
on all page mode, instead at the and of file there are many NUL characters
Can you help me ?
mtugnoli
asked
at 29 Oct 2020
Answers
-
this removed the empty characters at the end for me: https://stackoverflow.com/questions/27268994/why-do-i-have-a-million-null-characters-at-the-end-of-my-csv-file basically replace:
return File(memoryStream.GetBuffer()...
with:return File(memoryStream.ToArray()...
Omuanswered at 29 Oct 2020-
Yes, now is ok ! Thank Youat 29 Oct 2020 mtugnoli
-