Methods of listing most popular pages in website

  • Thread starter Thread starter KevD711
  • Start date Start date
K

KevD711

Hi. I'm building a new data driven site with some static pages mixed
in. I would like to provide a list of the most popular or most viewed
pages on my home page. I can't decide if I should write the hits to
the DB, a text file or use IIS's logging. My first choice would be
the IIS logs I think. I have some code that will query the log pretty
well but all I can seem to get in a recordset is the file name not the
title of the page to create a link with. Does anyone have a any
ideas, experience or code snippets they would like to share or point
me to. Thank you for any thoughts. Kevin D.
 
iis logs make the most sense. you can use a log filter to add additional info
to the log, or add a "tag" (arg) to the url to help identify the page. you
can also use a site crawler to build a database of pages, then the logs to do
the hit counts.

-- bruce (sqlwork.com)
 

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