Reputation: 15378
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
Reputation: 58615
You need to use a Autocomplete script. Microsoft's AJAX Control Toolkit provides that.
And there's also a jQuery UI Autocomplete.
Here are some tutorials on the subject:
I will have the decency of not copying the code from those to here :)
Upvotes: 4
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