Components ASP.Net

<%@ Page Language=VB Debug=true %>
<%@ Import Namespace="Microsoft.Web.UI.WebControls" %>
<%@ Register TagPrefix="IEControls" 
    Namespace="Microsoft.Web.UI.WebControls" 
    Assembly ="Microsoft.Web.UI.WebControls"
%>


Using a TabStrip Control with a MultiPage Control



    id="MyTabStrip"
    runat="server"
    targetid="MyMultiPage"
    >
            id="Tab1"
        runat="server"
        text=" Name "
        tooltip="Click Me!!!"
    />
    
            id="Tab2"
        runat="server"
        Text=" Email Address " 
    />
    
            id="Tab3"
        runat="server"
        Text=" Password " 
    />

    id="MyMultiPage"
    runat="server"
    selectedindex=0
    >
            id="pv1"
        runat=server
        font-name="Arial"
        font-bold=True
        forecolor="yellow"
        backcolor="darkred"
    >
        Enter your name:

                id="txtName" 
        runat=server 
        />    
        

        
            id="pv2"
        runat=server
        font-name="Arial"
        font-bold=True
        forecolor="darkred"
        backcolor="yellow"
    >
        Enter your email address:

                id="txtEmail" 
        runat=server 
        />    
        
            id="pv3"
        runat=server
        font-name="Arial"
        font-bold=True
        forecolor="darkblue"
        backcolor="green"
    >
        Enter your password:

                id="txtPassword" 
        runat=server 
        />