Reputation: 2239
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
Reputation: 3488
If you want to search in database behind site, Full Text Search can also help.
Upvotes: 0
Reputation: 39413
Dot Lucene (AKA Lucene.net)
You can find a good sample and explanation in CodeProject
Upvotes: 1
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