User Control And Master Page ASP.Net

<%@ Page Language=VB Debug=true %>
<%@ Register 
    TagPrefix="My" 
    TagName="SimpleControl" 
    Src="UserControlReadWriteProp.ascx" 
%>

Sub Page_Load(ByVal Sender as Object, ByVal E as EventArgs)
    If MSC1.UserNameLabel = "User Name: " Then
        MSC1.UserNameLabel = "Your Name: "
    End If
    MSC1.PasswordLabel = UCase(MSC1.PasswordLabel)
End Sub
Sub SubmitBtn_Click(Sender As Object, E As EventArgs)
    lblMessage.Text = "You entered: " & MSC1.UserName _
        & " " & MSC1.Password
    MSC1.FontName = "Arial"
    MSC1.FontBold = "True"
    'lblMessage.Text = MSC1.FontName
End Sub



Implementing a User Control on an ASP.NET Page


    runat="server"
    id="MyForm"    
>



    id="MSC1" 
    runat="server"
    fontname="Comic Sans MS"
    fontbold="False"
/>


    id="butOK"
    text="  OK  "
    onclick="SubmitBtn_Click" 
    runat="server"
/>



    id="lblMessage"
    runat="server"
/>



<%-- UserControlReadWriteProp.ascx

Public ReadOnly Property UserName() As String
    Get
        UserName = txtUserName.Text
    End Get
End Property
Public ReadOnly Property Password() As String
    Get
        Password = txtPassword.Text
    End Get
End Property
Public ReadOnly Property Version() As String
    Get
        Version = "2.3.145"
    End Get
End Property
Public WriteOnly Property FontName() As String
    Set
        lbl1.Font.Name = value
        lbl2.Font.Name = value
    End Set
End Property
Public WriteOnly Property FontBold() As Boolean
    Set
        lbl1.Font.Bold = value
        lbl2.Font.Bold = value
    End Set
End Property
Public Property UserNameLabel() As String
    Get
        UserNameLabel = lbl1.Text
    End Get
    Set
        lbl1.Text = value
    End Set
End Property
Public Property PasswordLabel() As String
    Get
        PasswordLabel = lbl2.Text
    End Get
    Set
        lbl2.Text = value
    End Set
End Property

    border-style:solid;border-color:black;" cellspacing="15">


    id="lbl1"
    runat="server"
    Font-Bold="True"
    Text="User Name: "
/>


    id="txtUserName"
    runat=server
/>




    id="lbl2"
    runat="server"
    Font-Bold="True"
    Text="Password: "
/>


    id="txtPassword"
    runat=server
    TextMode="Password"
/>



--%>