William Hurst
William Hurst

Reputation: 2239

Open Source (Free) ASP.NET Site Seacrch

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.

Upvotes: 0

Views: 248

Answers (3)

dmajkic
dmajkic

Reputation: 3488

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

Upvotes: 0

Eduardo Molteni
Eduardo Molteni

Reputation: 39413

Dot Lucene (AKA Lucene.net)

You can find a good sample and explanation in CodeProject

Upvotes: 1

Jim Blizard
Jim Blizard

Reputation: 4253

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.

Upvotes: 0

Related Questions