I’m using ASPxPageControl and in each page I have a couple of grids. When Im using Sql Server Profiler each time I change Tab there is a query for each grid in each tab sent to the database. Is it possible not to load data for each grid while changing tabs ?
What can I do to make this all work faster?
If most of the data for these grids stay the same and are for every user the same you can use the Cache object to store the retrieved data in.
You can also try to optimize the sql statements for performance, put indexes on columns where it makes sense, …
Helpful links: