User control problem

  • Thread starter Thread starter John
  • Start date Start date
J

John

Hi all,

I have a usercontrol which contains others. How do I get the info from these
embedded usercontrols from my parent usercontrol?

Regards
John.
 
Expose the child controls via read-only properties in the
parent control, then the "grand-parent" page can see the
parent user control, and the embedded child user controls.

You can also use locally mapped "WithEvents" variables to
add an event handler to the top-level page by referencing
the child/grand-child user controls
 
Back
Top