Posted on: 6/4/2014 2:34:53 PM | Views : 389

I have a dropdownbox that opens to a gridview...i would like to create a search box that seaches the gridview? How do i do that?
<ContentTemplate> <asp:TextBox ID="txtLoco" runat="server" Width="150px" ReadOnly="true" /> <asp:Panel runat="server" ID="ddlLoco" Style="max-height: 200px; overflow-y: scroll; display: none; visibility: hidden;"> <asp:GridView ID="LocationGridView" runat="server" ShowHeader="true" AutoGenerateColumns="false" OnRowDataBound="LocationGridView_RowDataBound" OnSelectedIndexChanged="LocationGridView_SelectedIndexChanged" DataSourceID="SQLlistsel" Width="425px"> <RowStyle BackColor="#DDDDDD" /> ...

Go to the complete details ...