Apart from the gridview pagination, stored procedure pagination and the on scroll loading of the records in a grid view, what are the other best ways to load a 10000+ records on a view.
Asked
Active
Viewed 496 times
0
-
Just ignore GridView. use a lightweight alternative with least inline attributes and formatting – Mostafa Armandi Jan 25 '15 at 09:46
1 Answers
0
The only way I can see besides gridview/SP pagination is creating a View for the select you're executing, because they are faster than simple queries or SPs.
Take a look at: Is a view faster than a simple query?