views:

58

answers:

2

I have website and I need to build search engine for it.

I do not know how to build that, I just wrote same query to get same important value.

but this does not give sense.

And thanks for any help.

+2  A: 

You could do one of two things:

  1. Use a third party search engine such as Google Site Search. (You'll have to pay if you don't want google branding or ads)
  2. Create your own. Maybe use Lucene.net.
Keltex
+1  A: 

It looks, you need to provide detailed Search features for your site. If so, In General you can do something like:

Provide textboxes and a search button. Create a stroed procedure which searches the database based on the textbox entries on click of the Search Button.

ref : Implementing search option

For detailed Search module implementation have a look at these samples:

Asad Butt