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






Adding a ToolbarTextBox 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 Page_Load(ByVal Sender as Object, ByVal E as EventArgs)

End Sub
Sub Search_Changed(Sender As Object, E As EventArgs)
    lblMessage.Text = "Searching for: " & txtSearchTerm.Text
End Sub
</SCRIPT>
<HTML>
<HEAD>
<TITLE>Adding a ToolbarTextBox Control to a Toolbar Control</TITLE>
</HEAD>
<BODY LEFTMARGIN="10">
<form runat="server">
<IEControls:toolbar 
    id="MyTB" 
    runat="server" 
    autopostback="True"
    >
    <IEControls:toolbartextbox 
        id="txtSearchTerm"
        runat="server"
        text="Enter Search Term"
        columns=20
        maxlength="30"
        textmode="SingleLine"
        ontextchanged="Search_Changed"
    />
</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 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)