asp.net - ASP FileUpload Controller in AJAX Accordion -


I have a FileUpload controller and button inside an AJAX accordion, which can not work me. The problem is that FileUpload controller requires a full postback for this. However, since the control is within an updated panel, ASP is deciding to post partial postback. Generally, you'll only put ControlId in a trigger on the update panel. However, because the Aardian uses a different namespace, you are unable to do this (at least directly).

How do you solve this problem?

With UpdateMode being conditional, you can potentially set the ChildAsTriggers property to UpdatePanel on the wrong. Then any updates to the panel will need to be coded explosions. Never tried it, but it could work.


Comments