How to export a large data set to excel in client-side?

1.1k views Asked by At

If the JSON data size is around 40 to MB in size (around 60K rows with 20 columns approximately). What's the best client-side library to be used for exporting to excel?

1

There are 1 answers

2
abdul qayyum On BEST ANSWER

as for as js is concerned there is limit to it set by JavaScriptSerializer.MaxJsonLength, otherwise json can sent as much data as possible. IE crashes because it can not handle so much data so you should send 8k blocks of data and then properly join them to get full document on client side