vote up 0 vote down star

I have an ASP web application which has pages with static content as well as dynamic content(data from database). I want to implement a search feature in the site.I Can do this with the dynamic data easily by framing the select query based on the search keys and pull data from the tables,But i would like to know how can i implement the search with the static pages ?

flag

56% accept rate
I suggest that you include the ASP tag in your question. – Bruno Rothgiesser Sep 3 at 13:20

2 Answers

vote up 0 vote down

This is what i was looking for http://www.codeproject.com/KB/aspnet/search.aspx

link|flag
vote up 0 vote down

You need to implement some sort of file indexing system such as htdig or Lucene to index your static content, then run your searches through that.

The main problem would be to present a unified search for both your static and dynamic content - I would simply push the dynamic content into the indexer (at least Lucene allows nicely for that) and use the same search system for both.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.