I want to implement search engine in my asp.net page. Means I want to keep one textbox and a search button. So what ever the keyword I will enter in that, it will search on this, the way it is happening in google.
Please give some idea.....
Thanks.
I want to implement search engine in my asp.net page. Means I want to keep one textbox and a search button. So what ever the keyword I will enter in that, it will search on this, the way it is happening in google.
Please give some idea.....
Thanks.
I have pretty good expirience with Lucene.NET, and you can also use MS SQL server Full Text Search if your data is in a MS SQL database.
Heres a great link to get you started on the HTML side. http://www.w3schools.com/html/html_forms.asp
<form>
Search: <input type="text" name="query" />
</form>
As for the ASP side, take a look at http://www.w3schools.com/aspnet/aspnet_forms.asp