Custom Controls ASP.Net Tutorial

<%@ Register Assembly="ClassLibrary1" Namespace="ClassLibrary1" TagPrefix="cc1" %>
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">


    Adding a Custom Web Control


    
    

        
    

    


File: WebCustomControl1_1.cs
Imports System.ComponentModel
Imports System.Web.UI
 ToolboxData("<{0}:WebCustomControl1 runat=server>")> 
Public Class WebCustomControl1
    Inherits System.Web.UI.WebControls.WebControl
    Dim _text As String
     _
    Property [Text]() As String
        Get
            Return _text
        End Get
        Set(ByVal Value As String)
            _text = Value
        End Set
    End Property
    Protected Overrides Sub Render(ByVal output As System.Web.UI.HtmlTextWriter)
        output.Write([Text])
    End Sub
End Class