Asp.Net 2.0 framewrok - VB.Net application I have a UserControl containing a Asp.Net DropDownList.
Things already researched and \ or tried:
- The control gets bound to data on page load inside if not Page.IsPostBack (only loads once)
- ID proprety is set for control (ID = ddlMyControl)
- AutoPostBack is set to true
- EnableViewState on the control is set to true
- AutoEventWireUp in the UserControl declaration is set to true
- EnableEventValidation is set to false in the parent page
The control will not fire it's SelectedIndexChanged event no matter what I do. HELP !!
Thanks :)