hit counter

  • Thread starter Thread starter dee
  • Start date Start date
explore your Global.asax file.

You can use the Session_Start method which will be when a new visitor comes
to your site,
or i think Application_BeginRequest for page hits.

You can also have your pages inherit from a page the inherits from
System.Web.UI.Page, and place counters in there.

Is that what you were looking for?
 
Hi
How can I add a hit counter persistant across startups?
Thanks.
Dee

Hi there !
You could create a table in a database.. and increment its counter
on each hit ? Simply speaking...

Antonio
 
Yes thanks

Grant Merwitz said:
explore your Global.asax file.

You can use the Session_Start method which will be when a new visitor
comes to your site,
or i think Application_BeginRequest for page hits.

You can also have your pages inherit from a page the inherits from
System.Web.UI.Page, and place counters in there.

Is that what you were looking for?
 

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

Similar Threads

Request Current 9
Hit counter 4
Free hit counter? 2
Hit Counter 5
Hit Counter not working 7
Hit counter - question 6
Hit Counters on Every Page 15
How to hide password? 1

Back
Top