I've got a DropDownList (DDL) that is set with AutoPostBack=true and is set with a SelectedIndexChanged event. Everything works fine with regards to the post back, OnLoad fires, the SelectedIndex event fires, however that is it.
In addition to this DDL I have a whole host of other controls that have DataBinding events that need to get fired on the post back, yet they aren't. Is there something I'm missing, other than explicitly calling the DataBind command for all the extra controls, that will cause their DataBinding events to fire on a DDL post back?
I'm hardly a noob, but this one has me stumped. Any other method I use to post the form back will cause all of my controls to fire their DataBind events, except when I post back via this DDL. Any ideas?