Adding a ToolbarDropDownList Control to a Toolbar Control (VB.net) : Toolbar « Components « ASP.Net






Adding a ToolbarDropDownList Control to a Toolbar Control (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 ddl1_Changed(ByVal Sender as Object, ByVal E as EventArgs)
    lblMessage.Text = "You selected item: " _
        & ddlSiteSection.SelectedItem.Text
End Sub
</SCRIPT>
<HTML>
<HEAD>
<TITLE>Adding a ToolbarDropDownList Control to a Toolbar Control</TITLE>
</HEAD>
<BODY LEFTMARGIN="10">
<form runat="server">
<IEControls:toolbar 
    id="MyTB" 
    runat="server" 
    autopostback="true"
    >
    <IEControls:ToolBarDropDownList
        id="ddlSiteSection"
        runat="server"
        onselectedindexchanged="ddl1_Changed"
    >
        <asp:ListItem>Home</asp:ListItem>
        <asp:ListItem>News</asp:ListItem>
        <asp:ListItem>Employees</asp:ListItem>
        <asp:ListItem>Contact Information</asp:ListItem>
    </IEControls:ToolBarDropDownList>
</IEControls:toolbar>
<BR>
<asp:Label
    id="lblMessage"
    runat="server"
    font-bold="True"
/>
</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 textbox (VB.net)
6.Toolbar with hyperlink button (VB.net)
7.Adding a ToolbarSeparator Control to a Toolbar Control (VB.net)
8.Adding a ToolbarTextBox Control to a Toolbar Control (VB.net)
9.Adding a ToolbarButton Control to a Toolbar Control (VB.net)
10.Adding a ToolbarCheckButton Control to a Toolbar Control (VB.net)
11.Adding a ToolbarCheckGroup 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)