Click here to Skip to main content
15,895,799 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi there,

I want to implement a search option in my web application(C#) related to data within my website.
Also I want suggestions under the search box as soon as user types some text into the textbox.
I want to know whether there are any built-in techniques for this in c# language or else any other way to implement Search option.
Posted
Updated 10-Nov-10 18:58pm
v2

For the 2nd part of your question, what you're talking about is an 'auto completer', there are lots of examples of this available

e.g jquery
http://www.ajaxdaddy.com/demo-jquery-autocomplete.htm[^]

The technique is to make an ajax call when users type into a text box, retrieve a list of possible completion values from whatever source and display them when the ajax call completes
 
Share this answer
 
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900