May I know what are the best practices for implementing a site search in ASP .net web app. The user should be able to enter some keywords and get related links with the keyword. I have just started researching. It would be great if you put on your ideas.
Share
It all depends on where your data is stored: database or static pages.
For the former, I’d use Lucene.NET (check out the SubText blog in which the latest release has a good implementation). For the latter I’d use dtSearch to crawl the site to create an index which you can search across.