1

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.

Mediator
  • 14,951
  • 35
  • 113
  • 191

2 Answers2

4

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:

Microsoft's:

jQuery's

I will have the decency of not copying the code from those to here :)

Community
  • 1
  • 1
Adriano Carneiro
  • 57,693
  • 12
  • 90
  • 123
2

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...

Abe Miessler
  • 82,532
  • 99
  • 305
  • 486