Custom Controls ASP.Net Tutorial

<%@ Register TagPrefix="sp" TagName="SmartBox"
    Src="Control.ascx" %>
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

  
    Creating ASP.NET Web Server Controls
    
      protected void Page_Load()
      {
        nameSb.LabelText = "Name:";
        addressSb.LabelText = "Address:";
        countrySb.LabelText = "Country:";
        phoneSb.LabelText = "Phone:";
      }
    
  
  
    
      
                LabelText="Address:" />
                LabelText="Country:" />
                LabelText="Phone:" />
    
  

File: Control.ascx

  public string LabelText 
  {
    set
    {
      myLabel.Text = value;
    }
  }
  public string Text
  {
    get
    {
      return myTextBox.Text;
    }
  }

  
        MaxLength="20" />