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 Sub Page_Load()
        nameSb.LabelText = "Name:"
        addressSb.LabelText = "Address:"
        countrySb.LabelText = "Country:"
        phoneSb.LabelText = "Phone:"
      End Sub
    
  
  
    
      
                LabelText="Address:" />
                LabelText="Country:" />
                LabelText="Phone:" />
    
  

File: Control.ascx

  Public WriteOnly Property LabelText() As String
    Set(ByVal value As String)
      myLabel.Text = value
    End Set
  End Property
  
  Public ReadOnly Property Text() As String
    Get
      Text = myTextBox.Text
    End Get
  End Property

  
        MaxLength="20" />