Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 2nd, 2012  |  syntax: None  |  size: 0.43 KB  |  hits: 28  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Access nested web user control elements
  2. public partial class ParentControl : UserControl
  3. {
  4.     ...
  5.     // Expose the whole child control
  6.     public ChildControl MyChild
  7.     {
  8.         get { return this.theIdOfTheChildControl; }
  9.     }
  10.  
  11.     ...
  12.  
  13.     // or expose specific properties
  14.     public string MyChildText
  15.     {
  16.         get { return this.theIdOfTheChildControl.Text; }
  17.         set { this.theIdOfTheChildControl.Text = value; }
  18.     }
  19. }