Forum Moderators: open
You can either use dropdownlist = myControl.FindControl("myDropDownList")
Or the more 'proper' way, set up property in your control, which references the selected item of the dropdownlist:
Public Property SelectedItem as ListItem
get
return dropDownList.SelectedItem
end get
....