0

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.

Chris
  • 2,959
  • 1
  • 30
  • 46
Hashim Al-Arab
  • 154
  • 2
  • 5
  • 11
  • It would be helpful to know some more specifics: What do you want your search engine to search for? Any text on a page? A specific item of data? – Chris Mar 03 '10 at 17:57
  • I want from search engine to search all my database, looking for any match. – Hashim Al-Arab Mar 03 '10 at 18:38
  • From the "Related" sidebar: http://stackoverflow.com/questions/112248/building-a-web-search-engine http://stackoverflow.com/questions/823634/best-search-engine-for-research-organisations-website http://stackoverflow.com/questions/523106/recommend-a-linux-based-site-search-engine and there are probably others. – dmckee --- ex-moderator kitten Mar 04 '10 at 13:52

2 Answers2

2

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
  • 26,220
  • 11
  • 79
  • 111
2

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
  • 21,468
  • 17
  • 69
  • 94