Mega Code Archive

 
Categories / ASP.Net / Components
 

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>