I have a ListBox containing a large number of items, which are all account numbers and so hard to search through.
Is it possible to have the items "filtered" as the user types into a textbox, so that only items that match what has been entered so far are displayed?
e.g.
List Box
2342
3434
2332
3224
User then enters 3 in the texbox - onKeyUp the listbox is filtered to only display:
TextBox
3ListBox
3434
3224
User then enters a 2 in the box:
Textbox
32ListBox
3224
Is this possible in ASP.Net (not MVC2)? If so, is it best via callback in an UpdatePanel or javascript of somekind?