Server Controls

  • Thread starter Thread starter I am Sam
  • Start date Start date
I

I am Sam

In a composite control with child controls, how do you fire an event in the
parent(root) control so that a child control does something. Do I need to
bubble an event?
 
No, you do not need to fire an event. Simply instruct the child control to
do something:

ChildControl.DoSomething();

--
HTH,

Kevin Spencer
Chicken Salad Surgeon
Microsoft MVP
 
Back
Top