implementing search

  • Thread starter Thread starter Greoasy
  • Start date Start date
G

Greoasy

How to implement filtering or searching of the data like we have in
MSDN.when we tye any word in the lookup it should automatically be
sorted and as we go on entering the search should be more refined any
method to do this
please let me know.

thanks in advance
 
How to implement filtering or searching of the data like we have in
MSDN.when we tye any word in the lookup it should automatically be
sorted and as we go on entering the search should be more refined any
method to do this
please let me know.

thanks in advance

I think, the one of the possible solutions can be following.

When you do a seach by the keyword (for example "test"), the base
search function should be able to return a piece of text from the
found document. Based on that text you can build the list of words and
sort them by occurrence count. That's all. The dropdown with an "auto
suggest" can be done with Ajax.
 
Back
Top