Say I have a composite control in ASP.NET (C#) which includes a drop down list. I need to be able to bubble the event back to the parent form so that other code can be executed based on its SelectedItem
.
How do I expose the OnSelectedItemChanged
event to the application?
Do I need to create my own delegate and raise it when the internal drop down list item is changed?