I am using gridview control of .net framework 4.0. My list contains 1000 of rows which i am binding to a gridview on each postback. Hence, My page is taking time to load I want to speed up the system. Is there any other control available which can enhance the performance or is there any other way to achieve this?
What all i want is faster performance
I am using gridview control of .net framework 4.0. My list contains 1000 of
Share
You might be able to use faster controls, such as the
Repeater, but it depends on what feature you really need. Are you only displaying the data or is it editable?With such a large amount of data you can look at optimizing what HTML you use for rendering, as you may be able to split the page size by half…