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(ByVal Sender as Object, ByVal E as EventArgs)
    lblMessage.Text = "You selected item: " _
        & ddlSiteSection.SelectedItem.Text
End Sub



Adding a ToolbarDropDownList Control to a Toolbar Control



    id="MyTB" 
    runat="server" 
    autopostback="true"
    >
            id="ddlSiteSection"
        runat="server"
        onselectedindexchanged="ddl1_Changed"
    >
        Home
        News
        Employees
        Contact Information
    



    id="lblMessage"
    runat="server"
    font-bold="True"
/>