Index aspx files in a restricted ( shared server) enviroment

  • Thread starter Thread starter laszlo.csabi
  • Start date Start date
L

laszlo.csabi

Hi,

Any of you guys have any experience about searching HTML files within a
Asp.net webapplication using other than Microsoft Indexing Server?

Unfortunatelly the site is on a shared server enviroment and I can't
use Indexing server to search among the HTML files.

Any suggestion?

Thanks

Laszlo
 
You can set up a routine that runs through the directory and reads the files,
without index server, but you will end up using an account that has at least
the right to read, so be careful where you place the information, as it could
give a hacker rights you do not want him to have.

I would consider setting up a routine that reads and caches when the app
boots, as you can use the cached information (stored in XML, for example),
much faster than searching all files every time someone searches.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

***************************
Think Outside the Box!
***************************
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top