I have some tables in my database with about 7K rows and I need to make a report on the web site( asp.net ) with custom formating, pivot table like details.
What is the best solution for this, because when I render for example repeater with this amount of data it`s very slow.
Thanks for advice
If you don’t want paging, then you’ll probably need some AJAX to fetch rows as you scroll, and possibly remove rows as they scroll out of view, if you need to conserve memory.