Lets say I am raising an Event called SomethingUpdated from my
UserControl.
When I know the UserControl type then in my parent aspx I can simply
do this:
protected MyUserControl MyUserControl1;
MyUserControl1.SomethingUpdated += new
EventHandler(Form1_SomethingUpdated);
But when I don't know the type of the UserControl I don't know how to
access the public SomethingUpdated Event.
What is the best approach to this?
thanks,
tj
Thanks Thomas Eyde