NoviceToDotNet
NoviceToDotNet

Reputation: 10805

How to bind textbox to the datable and make it search like google for some field of datable?

i have a populated datatable and a search textbox, i want to bind datatable to the search text box and want to make it search like google, how can i achive this?

Edited :
Like i want my search box to start searching all the first name which are similar when i start typing characters it starts searching for similar records as i type more character it display below more correct record like google

Upvotes: 0

Views: 1896

Answers (1)

Aristos
Aristos

Reputation: 66641

The one you ask is called AutoComplete

You can search on Internet for more example, there are on jQuery, on asp.net Ajax control Toolkit, on Yahoo UI, and stand alone.

The asp.net ajax
http://www.asp.net/ajax/ajaxcontroltoolkit/samples/autocomplete/autocomplete.aspx

Some on jQuery
http://docs.jquery.com/Plugins/autocomplete
http://docs.jquery.com/UI/Autocomplete

The yahoo ui
http://developer.yahoo.com/yui/autocomplete/

Upvotes: 1

Related Questions