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 ToolBarClick(ByVal Sender as Object, _
    ByVal E as EventArgs)
    lblMessage.Text = "You selected the " _
        & ddlSiteSection.SelectedItem.Text _
        & " section of the site.
" _
        & "You entered this search term: " _
        & txtSearchTerm.Text & "."
End Sub



ToolBar 3 Control Sample Page




    id="MyTB" 
    runat="server" 
    AutoPostBack="true"
    Font-Size="10"
    Orientation="Horizontal"
    OnButtonClick="ToolBarClick"
    >
            id="Label1"
        runat="server"
        Text="Select Site Section: "
    />
            id="ddlSiteSection"
        runat="server"
    >
        Home
        News
        Employees
        Contact Information
    
            id="Sep1"
        runat="server"
    />
            id="Sep2"
        runat="server"
    />
            id="Label2"
        runat="server"
        Text="Search Our Site: "
    />
            id="txtSearchTerm"
        runat="server"
    />
            id="Go"
        runat="server"
        Text="Go"
    />



    id="lblMessage"
    runat="server"
    FOnt-Bold="True"
/>