keyword search
-
Hi Does anyone know any good articles for creating a keyword search in c#? Ive found loads which show you how to search through a database driven website but all the content on my website that I need to search for is not database driven any help would be great! thanks
-
Hi Does anyone know any good articles for creating a keyword search in c#? Ive found loads which show you how to search through a database driven website but all the content on my website that I need to search for is not database driven any help would be great! thanks
If it's not database driven, your best bet is to use google to search your site, if it's live. If it's not, then you need to build a DB.
Christian Graus Please read this if you don't understand the answer I've given you "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
-
If it's not database driven, your best bet is to use google to search your site, if it's live. If it's not, then you need to build a DB.
Christian Graus Please read this if you don't understand the answer I've given you "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
OK Basically Im building a web app which will have lots of links and text information displayed on pages. So the text information which is not stored in the database can only be searched using google and not a custom search engine I build myself as it would take too long, is that what you mean? I was hoping to find some example code on how to create my own search engine but I dont want to spend months doing it. thansk for the reply
-
OK Basically Im building a web app which will have lots of links and text information displayed on pages. So the text information which is not stored in the database can only be searched using google and not a custom search engine I build myself as it would take too long, is that what you mean? I was hoping to find some example code on how to create my own search engine but I dont want to spend months doing it. thansk for the reply
.netman wrote:
I was hoping to find some example code on how to create my own search engine but I dont want to spend months doing it.
Every search engine, including Google, is based on databases and indexes. The better the indexing, the quicker the searches. That's what a database is good for, there's really no alternative. If your pages are static, you could choose to put the content into a DB, and search from there, that shouldn't take too long. It depends on how complex a search you want to support. IF your site is live, then there is no better option IMO than doing a google search from your site with site: yourURL as part of the search string.
Christian Graus Please read this if you don't understand the answer I've given you "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
-
.netman wrote:
I was hoping to find some example code on how to create my own search engine but I dont want to spend months doing it.
Every search engine, including Google, is based on databases and indexes. The better the indexing, the quicker the searches. That's what a database is good for, there's really no alternative. If your pages are static, you could choose to put the content into a DB, and search from there, that shouldn't take too long. It depends on how complex a search you want to support. IF your site is live, then there is no better option IMO than doing a google search from your site with site: yourURL as part of the search string.
Christian Graus Please read this if you don't understand the answer I've given you "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
-
Hi Does anyone know any good articles for creating a keyword search in c#? Ive found loads which show you how to search through a database driven website but all the content on my website that I need to search for is not database driven any help would be great! thanks
-