Toolbar with textbox (VB.net) : Toolbar « Components « ASP.Net






Toolbar with textbox (VB.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"
%>
<script runat=server>
Sub ToolBarClick(ByVal Sender as Object, _
    ByVal E as EventArgs)
    lblMessage.Text = "You selected the " _
        & ddlSiteSection.SelectedItem.Text _
        & " section of the site.<BR>" _
        & "You entered this search term: " _
        & txtSearchTerm.Text & "."
End Sub
</SCRIPT>
<HTML>
<HEAD>
<TITLE>ToolBar 3 Control Sample Page</TITLE>
</HEAD>
<BODY>
<form runat="server">
<Font Face="Tahoma">
<IEControls:ToolBar 
    id="MyTB" 
    runat="server" 
    AutoPostBack="true"
    Font-Size="10"
    Orientation="Horizontal"
    OnButtonClick="ToolBarClick"
    >
    <IEControls:ToolBarLabel 
        id="Label1"
        runat="server"
        Text="Select Site Section: "
    />
    <IEControls:ToolBarDropDownList
        id="ddlSiteSection"
        runat="server"
    >
        <asp:ListItem>Home</asp:ListItem>
        <asp:ListItem>News</asp:ListItem>
        <asp:ListItem>Employees</asp:ListItem>
        <asp:ListItem>Contact Information</asp:ListItem>
    </IEControls:ToolBarDropDownList>
    <IEControls:ToolBarSeparator
        id="Sep1"
        runat="server"
    />
    <IEControls:ToolBarSeparator
        id="Sep2"
        runat="server"
    />
    <IEControls:ToolBarLabel 
        id="Label2"
        runat="server"
        Text="Search Our Site: "
    />
    <IEControls:ToolBarTextBox 
        id="txtSearchTerm"
        runat="server"
    />
    <IEControls:ToolBarButton 
        id="Go"
        runat="server"
        Text="Go"
    />
</IEControls:ToolBar>
<BR>
<asp:Label
    id="lblMessage"
    runat="server"
    FOnt-Bold="True"
/>
</Font>
</Form>
</BODY>
</HTML>

           
       








Related examples in the same category

1.IE control toolbar with button images (C#)
2.Toolbar with icon (VB.net)
3.Toggle button on Toolbar (VB.net)
4.Toolbar with comboBox (VB.net)
5.Toolbar with hyperlink button (VB.net)
6.Adding a ToolbarSeparator Control to a Toolbar Control (VB.net)
7.Adding a ToolbarTextBox Control to a Toolbar Control (VB.net)
8.Adding a ToolbarButton Control to a Toolbar Control (VB.net)
9.Adding a ToolbarCheckButton Control to a Toolbar Control (VB.net)
10.Adding a ToolbarCheckGroup Control to a Toolbar Control (VB.net)
11.Adding a ToolbarDropDownList Control to a Toolbar Control (VB.net)
12.Adding Controls to a Toolbar Control through Code (VB.net)
13.Adding a ToolbarLabel Control to a Toolbar Control (VB.net)