Dev.Mustafa Alhelo
Dev.Mustafa Alhelo

Reputation: 21

Ajax AutoComplete ASP.Net C#

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. Like the following picture

Upvotes: 1

Views: 161

Answers (3)

Gun
Gun

Reputation: 1411

Here is the nice article

AutoComplete TextBox With WCF

Upvotes: 2

Priyank
Priyank

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

Joe Ratzer
Joe Ratzer

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

Related Questions