views:

853

answers:

2

I have two update panels on one page, and both with UpdateProgress controls on - But whichever one I click... It triggers BOTH update progress controls?? Anyway to stop this so only the updateprogress triggers on the panel the button has been clicked on.

A: 

Plz check this thread, I have the same issue and have solve the problem..

http://stackoverflow.com/questions/1187953/updateprogessbar-is-not-working-when-setting-associatedupdatepanelid

By Design External triggers for an UpdatePanel do not fire an associated UpdateProgress, since the implementation of enabling the UpdateProgress control searches the control hierarchy for the calling control; an external trigger will not be present in the control hierarchy.

Muhammad Akhtar
A: 

Changing the UpdateMode property on each UpdatePanel to Conditional might help.

Updatemode="Conditional"

João Guilherme