User Control And Master Page ASP.Net

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

Sub SubmitBtn_Click(Sender As Object, E As EventArgs)
    lblMessage.Text = "You entered: " & MSC1.UserName _
        & " " & MSC1.Password & "
Control Version: " _
        & MSC1.Version
    'MSC1.UserName = "Bob"
End Sub



Implementing a User Control on an ASP.NET Page


    runat="server"
    id="MyForm"    
>



    id="MSC1" 
    runat="server"
/>


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



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



<%--UserControlReadProp.ascx

Sub Page_Load(ByVal Sender as Object, ByVal E as EventArgs)
    If Not IsPostBack Then
        txtUserName.Text = "Your Name Here"
    End If
End Sub
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

    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"
/>



--%>