Reputation: 21
I would like to know if any one know how to make an auto complete textbox that works like google chrome. I mean that when you type "Yah" -abbreviation for Yahoo- in the address bar of google chrome it completes the word of Yahoo and when you click enter button it takes you to yahoo site all of that by type "Yah" word in address bar or make click mouse event any where in the UI or by click enter button.
Upvotes: 1
Views: 161
Reputation: 1384
You can use Jquery Autocomplete For the purpose. You can customize its source to get the data from server using ajax and the binding of response. see AutoCompleteImplemetation in http://www.basiccodeexample.blogspot.in/
Upvotes: 0
Reputation: 18549
Have a look at jQuery and autocomplete or if you're using web forms with the AjaxControlToolkit look at the autocomplete control.
Upvotes: 0