HOW DO I CREATE A SEARCH ENGINE FOR MY WEBSITE USING ASP.NET C#?

I am trying to search a SQL Server 2008 database table based on user input into a texbox. I have already tried using the clause LIKE ‘%x%’, but it’s not useful when the user types in multiple words. I want my search engine to be able search keywords in the database. I read about FREETEXT and CONTAINS, but im not sure if that will work.
Please help me..Thanks in Advance.
HOW LONG DOES IT TAKE TO CREATE AN ADVANCED WEBSITE? (SEARCH ENGINE OR NETWORKING SITE)?
about 23 hours ago - 4 comments
Question by Rockstarz: How long does it take to create an advanced website? (search engine or networking site)? I have an extraordinary idea for a website but I only know basic web design. When it comes to developing something more advanced like facebook, how long do you think it will take and what resources do
Q&A: I WANT TO CREATE A POPULAR SEARCH ENGINE LIKE GOOGLE AND YAHOO…?
about 2 days ago - No comments
Question by Kerching!!!: I want to create a popular search engine like google and yahoo…? What should i do? I was thinking of setting up a business and create a search engine like Google and Yahoo. How do Google and Yahoo get their money? —————————————— Answer by firesplatfrom advertising —————————————— Add your own answer in
Q&A: I WANT TO CREATE A WEBSITE TO SELL SOMETHING. HOW DO I GET A SEARCH ENGINE TO SHOW MINE FIRST?
about 3 days ago - 8 comments
Question by Tina W: I want to create a website to sell something. How do I get a search engine to show mine first? I want to create a website to sell something. How do I get a search engine to show my site as one of its first sites once someone looks for it?
I RUN A MORTGAGE WEBISTE…NEED TO PLACE IT IN SEARCH ENGINES TO GENERATE LEADS??
about 5 days ago - 5 comments
Question by Ask R: I run a mortgage webiste…Need to place it in search engines to generate leads?? Can someone help me with how I can get traffic to my website without spending money? Google gets you leads but not good ones. —————————————— Answer by Raja Gnothing better than this to get qualified leads http://www.trafficg.com/?member=8754321
Q&A: HOW CAN I CREATE A “SEARCH ENGINE”?
about 1 week ago - No comments
Question by Dr Daud Zareef: How can i create a “search engine”? I have wrote a lot coding to my project, and there is nothing left to code anymore, so i just need to think, that how can i get all the world wide web “URL”? that is my answer for this day (27/04/09), i
QUESTION ABOUT DOMAINS AND SEARCH ENGINE RANKINGS?
about 1 week ago - 2 comments
Question by Aspurtaime Dog Sneeze: Question about domains and search engine rankings? Question about domains and search engine rankings I am building a website for a realtor. It seems that if the domain contains the search words (e.g “homes” and “Denver” and “realtor” to denverrealtor.com or denverhomes.com) it would rank higher in search engines than
HOW DID THE GOOGLE GUY MAKE HIS OWN SEARCH ENGINE?
about 1 week ago - 2 comments
Question by GSDMAN: How did the google guy make his own search engine? How did he put all the info in there? —————————————— Answer by Beeg JuanHe wrote some code and started it running. —————————————— What do you think? Answer below!
CAN YOU USE MS ACCESS AS A SEARCH ENGINE? IF SO, HOW CAN I DO IT?
about 2 weeks ago - 1 comment
Question by PEACH: Can you use MS ACCESS as a search engine? If so, how can I do it? I build a small database but I need to retrieve the information as if I was using a search engine, for example, if you search for POTATO and this is one of the fields on the
DOES A SEARCH ENGINE OWN THE SEARCHES PEOPLE PERFORM?
about 2 weeks ago - No comments
Question by stonerosedesigndotcom: Does a search engine own the searches people perform? Suppose a person searches an engine because they are considering trademarking a term or patenting an idea…does the search engine have the right to sell those terms to perhaps a marketing research company? What promises does a search engine make to not profit
PROBLEM WITH LIVE SEARCH – JQUERY (OR PHP?)?
about 2 weeks ago - No comments
Question by : Problem with live search – jquery (or php?)? Right now, I am designing a web page with a live search engine that fetches data from the database and styles it into a proper search result. The biggest problem I am experiencing is that you have to enter the exact same words in
about 1 year ago
The easiest way is to use the FREETEXT clause because it does not require a specifc format. The CONTAINS keyword allows you to use search limiters such as “AND NOT”. You will however need to create a full-text index on the table/columns you want to search.
Where are you outputting your results to? I’m assuming a .net webpage. If so you could simply just split your search string into parts. Use the ‘%LIKE%’ syntax for each separate word and then merge the results if you stored them in datatables by simply calling the Merge method of a datatable.