I am dynamically registering an image button as the trigger
for an update panel with the following code:
AsyncPostBackTrigger trigger = new AsyncPostBackTrigger();
trigger.ControlID
= imgButton.UniqueID;
trigger.EventName
= "click";
uxUplImageView.Triggers.Add(trigger);
This worked great.
However, I then set the same image button as the TargetControlID for a ModalPopupExtender. This seems to kill the trigger.
Does anyone have any ideas how to have the same button as
both the trigger for an update panel, and also for a Modalpopup?
Thanks for any help