I'd like to have several grids on a web page, each inside a separate UpdatePanel in conditional update mode.
Then I'd like to be able to page or sort a single grid, and have only that grid populate its data from the database.
The other grids should not do a DataBind(). So, I want to know, for each UpdatePanel, whether it will be updated on the client.
It would seem that the IsInPartialRendering property could be used for this, but it always seems to return false, at least during the Load and PreRender events of the UpdatePanel.
In what way can this behavior be implemented? We really don't want to retrieve data that won't be sent back to the client.