Reputation: 4474
I would like to know how many people view my web page.
I am using asp.net 2.0 C#.
Please let me know, is there any way to know people count(s) who view my web page.
Upvotes: 1
Views: 474
Reputation: 635
if you don't need any extra information about visitors you can just increment your "counter" (which will be kept in a file,db or any other persistent store) inside Session_Start from Global.asax.
Upvotes: 1
Reputation: 40736
Use Google Analytics or analyse the IIS logs on your web server.
Upvotes: 7