tags:

views:

81

answers:

3

Does anybody know of an easy to implement site search engine for asp.net? The less complicated the better.

Probably just needs a crawler and backend to store results. Some sort of API to get the search results back would be handy but I can get it straight from the DB as well.

+1  A: 

Dot Lucene (AKA Lucene.net)

You can find a good sample and explanation in CodeProject

Eduardo Molteni
A: 

Take a look at Lucene.Net. It is a .Net port of a very mature Java search engine. I've heard very good things about the .Net version.

Jim Blizard
A: 

If you want to search in database behind site, Full Text Search can also help.

dmajkic