Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Last post Jan 01, 2013 01:01 AM by Decker Dong - MSFT
Member
5 Points
32 Posts
Dec 31, 2012 08:15 AM|LINK
hi,
i want to implement a Search functionality in my asp.net web site.
how to implement that? since asp.net framework doesnt have a crawler mechanism like sharepoint, am stuck with ways of finding to implementing it.
or
is there a crawling mechanism in asp.net 3.5 [ am using VS 2010] ?
what are the steps i need to implement Search functionality .
any help is appreciated.
Star
13465 Points
2022 Posts
Dec 31, 2012 08:30 AM|LINK
you have the choice of either Lucene.NET or SQL Full-text Indexing.
http://stackoverflow.com/questions/5114631/mvc-site-search-functionality
Contributor
5032 Points
956 Posts
Dec 31, 2012 08:49 AM|LINK
below articles may help you,
http://dotnetslackers.com/articles/aspnet/Implementing-Search-in-ASP-NET-with-Google-Custom-Search.aspx
http://www.c-sharpcorner.com/UploadFile/mchandramouli/IntegratingGoogleSearch11242005033911AM/IntegratingGoogleSearch.aspx
All-Star
118619 Points
18779 Posts
Jan 01, 2013 01:01 AM|LINK
BenjaminKNR i want to implement a Search functionality in my asp.net web site. how to implement that? since asp.net framework doesnt have a crawler mechanism like sharepoint, am stuck with ways of finding to implementing it.
Hi,
If you only wanna do searching directly in a datatable,you can just use Full-Text Search with the SQL db.
But if you wanna do a Full-Text search for all the web site,you have to:
1)Nest a Google or Bing's Search Engine directly inside your website。
2)Please follow the example here:
http://www.codeproject.com/Articles/5981/Internal-Site-Search-Engine
BenjaminKNR
Member
5 Points
32 Posts
search functionality in asp.net framework
Dec 31, 2012 08:15 AM|LINK
hi,
i want to implement a Search functionality in my asp.net web site.
how to implement that? since asp.net framework doesnt have a crawler mechanism like sharepoint, am stuck with ways of finding to implementing it.
or
is there a crawling mechanism in asp.net 3.5 [ am using VS 2010] ?
what are the steps i need to implement Search functionality .
any help is appreciated.
urenjoy
Star
13465 Points
2022 Posts
Re: search functionality in asp.net framework
Dec 31, 2012 08:30 AM|LINK
you have the choice of either Lucene.NET or SQL Full-text Indexing.
http://stackoverflow.com/questions/5114631/mvc-site-search-functionality
prabu.raveen...
Contributor
5032 Points
956 Posts
Re: search functionality in asp.net framework
Dec 31, 2012 08:49 AM|LINK
below articles may help you,
http://dotnetslackers.com/articles/aspnet/Implementing-Search-in-ASP-NET-with-Google-Custom-Search.aspx
http://www.c-sharpcorner.com/UploadFile/mchandramouli/IntegratingGoogleSearch11242005033911AM/IntegratingGoogleSearch.aspx
http://dotnetslackers.com/articles/aspnet/Implementing-Search-in-ASP-NET-with-Google-Custom-Search.aspx
Decker Dong ...
All-Star
118619 Points
18779 Posts
Re: search functionality in asp.net framework
Jan 01, 2013 01:01 AM|LINK
Hi,
If you only wanna do searching directly in a datatable,you can just use Full-Text Search with the SQL db.
But if you wanna do a Full-Text search for all the web site,you have to:
1)Nest a Google or Bing's Search Engine directly inside your website。
2)Please follow the example here:
http://www.codeproject.com/Articles/5981/Internal-Site-Search-Engine