How do I detect whether a postback is a partial postback from any of my Update Panels?
Asked
Active
Viewed 1,847 times
1
-
1Take a look here: http://stackoverflow.com/questions/265686/how-can-you-tell-if-a-method-is-being-run-in-updatepanel-postback – Steve Jun 04 '10 at 22:57
-
The IsInAsyncPostBack just return true, but if you have many updatepanels how do you know where come from ? so ignore the render on the rest ones. This answer worth a lot. :) – Aristos Jun 05 '10 at 07:36
1 Answers
0
I am most likely wrong but I believe a partial postback is the same thing as a callback and there is a separate event for a callback.

Joe Phillips
- 49,743
- 32
- 103
- 159
-
Let say that you have 3 UpdatePanels, all of them have PageLoad. If one of the updatePanels make the click, then the program pass from all PageLoad, so to maximize speed, you need to know from witch UpdatePanel the trigger come from, and left only this PageLoad to run !, The rest must be ignore - or else you loose in speed. – Aristos Jun 05 '10 at 07:40