Mediator
Mediator

Reputation: 15378

How do the words in the search append as in Google

I write "video " and I is added to the drop-down list:

video converter  
video saver 
video player

Ho do this? I just know that every time the asp.net page reloads, but I need without overloading.

Upvotes: 1

Views: 174

Answers (2)

Abe Miessler
Abe Miessler

Reputation: 85086

You are talking about something called AutoComplete. To implement this functionality you will need to use AJAX. In ASP.NET there are two popular ways to accomplish this:

I personally prefer jQuery because it feels more lightweight/intuitive than what Microsoft offers, but I would recommend looking at both and seeing what you are more comfortable with. The AJAX toolkit is more integrated with Visual Studio so many people prefer using this...

Upvotes: 2

Related Questions