Asp Control ASP.Net

<%@ Page Language=VB Debug=true %>

Sub Page_Load(ByVal Sender as Object, ByVal E as EventArgs)
End Sub
Sub SubmitBtn_Click(Sender As Object, E As EventArgs)
  lblDataEntered.Text = "You entered:
" _
      & txtName.Text & "
" _
      & txtEmail.Text & "
" _
      & txtPhone.Text
End Sub



Creating a Basic TextBox Control


    id="lblDataEntered" 
    runat="server"
/>



Enter your Name:

    id="txtName" 
    Columns="25"
    MaxLength="30"
    Text="Your Name Here"
    runat=server 
/>



Enter your Email Address:

    id="txtEmail" 
    Columns="35"
    MaxLength="50"
    Text="@mycompany.com"
    BackColor="LightYellow"
    Font-Name="Comic Sans MS"
    Font-Size="9pt"
    Font-Bold="True"
    ToolTip="Remember to include your full email address!"
    runat=server 
/>



Enter your Phone Number:

    id="txtPhone" 
    Columns="15"
    MaxLength="15"
    Text="() -"
    AccessKey="P"
    BackColor="DarkRed"
    BorderWidth="3"
    BorderColor="DarkBlue"
    BorderStyle="Dashed"
    ForeColor="Yellow"
    ToolTip="No Extensions!"  
    runat=server 
/>



    id="butOK"
    text="OK"
    Type="Submit"
    OnClick="SubmitBtn_Click" 
    runat="server"
/>