How to increase Grid View Performance?
Thank you
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
SenthilkumarPosted May 10, 2012, 7:44 AM
Do not write morelogic on the item data bound.
Disable the view state
Load the records on demand. (write the custom paging logic)
Use the AJAX update panel
Do not store more values in hidden column for some operaion(based on the id select from the original source).
The above will give you better performance.
Jiteendra SampathiraoPosted May 10, 2012, 8:03 AM
2. Using paging..
3. Stop using Viewstate
4. Tuning the database queries
nice reference
http://msdn.microsoft.com/en-us/library/cc668225.aspx
Hope it helps...