Recording how many times a page was visited

  • Thread starter Thread starter Andy B
  • Start date Start date
A

Andy B

I want to record the number of times a page was visite into a sql server
database. This will be part of the admin stats for the website. Any ideas
how to do something like this?

d
 
The simplest way would be to increment a database value from the page's Load
event. Something more sophisticated would be to use one of the ASP.NET
global handlers.
 
Is there an example of this for both ways?


Jonathan Wood said:
The simplest way would be to increment a database value from the page's
Load event. Something more sophisticated would be to use one of the
ASP.NET global handlers.
 
Back
Top