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

Sub ddl1_Changed(Sender As Object, E As EventArgs)
    MyMultiPage.SelectedIndex = ddl1.SelectedItem.Value
End Sub



Providing Navigation in a MultiPage Control Using a DropDownList



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




    id="ddl1"
    autopostback="True"
    onselectedindexchanged="ddl1_Changed"
    runat="server"
>
    Name
    Email
    Password