I have a CompositeControl that contains a DropDownList.
I have set the AutoPostBack property of the DropDownList to true.
On the page, I have:
&l
I had repeating child controls (textbox and labels) in a ListView, inside an UpdatePanel.
Changing the textbox would cause a full (synch) postback.
I added the PAGE element (the first line in the .aspx page) : ClientIDMode="AutoID"
This fixed the problem for me, and now only the UpdatePanel refreshes - as desired.