"Jason" <jasong (AT) satx (DOT) rr.com> wrote
Quote:
Is there a utility/script that will search my site and output an index
of the results in html format? For example, it will search my site and
find the work chicken mentioned several times throughout. An index is
created and when the visitor clicks on the word chicken, it returns
pages on my site that include the word? hope this makes sense |
Does your site support ASP?
You could use the FileSystemObject's GetFolder() method to identify
all files in the folder then ReadAll each and use InStr() to determine
if the search string exists in a file (page) and display it as a hyperlink.
However, you may want to restrict the search from including html
tags, non-body text, and other items from the results.
If your site uses PHP then something similar can probably be done.