Record Truncation at ~17K - Works on Chrome, Sometimes not on IE - What could be wrong?
Record Truncation at ~17K - Works on Chrome, Sometimes not on IE - What could be wrong?
One of my DataTable displays using ASP.NET needs to show all of the records returned from a stored procedure, anywhere from 5 to 18000, depending on the data. The front-end is ASP.NET MVC and the result is fine on my computer in both IE and Chrome but only shows records greater than approximately 17,600 on a peer's IE. Chrome is fine for them. The code is not using Ajax or doing any paging, although I might consider it to improve performance.
Is there a meta tag or something similar that needs to be set to resolve this issue? Anything i should be looking at?
This question has an accepted answers - jump to answer
Answers
Hi @jamesJIgoe ,
Without
paging
orserverSide
browsers will struggle - this page of the FAQ should help, it discusses strategies for improving performance.Cheers,
Colin
Presumably, I'll have to load this page using ajax to use the server side option. Will try it.
I'd suggest using
ajax
withdeferRender
before jumping to server-side processing. With Ajax loading and deferred rendering you should see a massive improvement in IE. Example available here.Allan