Our project has inherited some composite controls that we can't change. One of these composite controls contains a dropdownlist that we'd like to trigger an asyncpostback that fires an update panel.
We can make the dropdownlist AutoPostBack but we can't make it work asynchronously. I've tried a number of things including using the unique client ID without success:
e.g.
<triggers>
<ajax:AsyncPostBackTrigger ControlID="compositeControl$ctl01" EventName="OnSelectedIndexChanged"></ajax:AsyncPostBackTrigger>
</triggers>
</ajax:UpdatePanel>
Any ideas?