If you liked Combo mode, you'll love it with Ajax. Simply set the UseAjax property to true on your type-ahead list, and watch it run! No extra libraries necessary; it works straight out of the box with ASP.NET.
Find a US city (~1000 records):
Still want more? Try new SuperSearch!
<ELB:EasyListBox id="comboStates" Height="120px" runat="server"
DisplayMode="combo" UseAjax="True"
ConnectionStringSqlServer="connectionstring"
SelectQuery="SELECT CityID, CityState FROM USCities ORDER BY CityState"
DataValueField="CityID" DataTextField="CityState" />
|