HTML Control ASP.Net

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

Sub Page_Load(ByVal Sender as Object, ByVal E as EventArgs)
    Span2.InnerText = "This text will not " _
        & "appear in bold.
"
End Sub



Defining a Basic Span Control



    id="Span1"
    runat=server
>
This text will appear in bold.
    



    id="Span2"
    runat=server
>
    



    id="Span3"
    runat=server
    disabled="True"
>
This text will appear disabled.
    



    id="Span4"
    runat=server
    visible="False"
>
This text will not appear.