-1

Is There Exists Any MVC Book Teaching How To Create Internal Search Engine Inside ASP.NET MVC Website? I've Searched a lot of Websites But Did not Find any Useful Articles. In Fact I'm Looking For a Kind of Search Engine Tutorial That Gets The Request From Text Box And Display The Results in a New Page.

Like Tea Commerce Starter Kit

Amirhossein Mehrvarzi
  • 18,024
  • 7
  • 45
  • 70
shervin -
  • 353
  • 1
  • 4
  • 12
  • 4
    I imagine the search functionality itself has nothing to do with ASP.NET MVC. Posting the search string and displaying the results would work like any other controller action. The *actual search* is an entirely different story and takes place in your business logic. We don't know what you're searching or how you plan to match strings against it, so there isn't much we can do to help. – David Aug 05 '13 at 12:22
  • 1
    In fact there is no link with ASP.Net MVC, what you need to find is the principle. You may also be interested by custom Google/Bing Search engines. – glautrou Aug 05 '13 at 12:25

1 Answers1

1

Take a look at the Lucene.NET project http://lucenenet.apache.org - it's mature and quite well-regarded.

Lucene.Net is a port of the Lucene search engine library, written in C# and targeted at .NET runtime users.

Because it's a port, books on the original Java version will be useful - see this question: Are there any books on Lucene.NET

Community
  • 1
  • 1
Duncan Smart
  • 31,172
  • 10
  • 68
  • 70