Reputation: 103358
On my ASP.NET web application, there is a search form which redirects the user to a page such as:
/Search.aspx?q=query_text
On this page, I want to display search results from the site pages.
What is the best way of doing this? Would I be better trying to develop a search engine by storing page content in the database, or is there an easy way of pulling this from google?
If I use google is there a way of getting the results in RSS format with URLs and titles so its easy to implement into the application?
Upvotes: 1
Views: 358
Reputation: 3777
if your data are coming from the database then you search should be from the database for sure !
but if you have static pages on your website then you can replace them by create a table for the content of the static web pages and then you can add your query to search on them.
Upvotes: 1