Click here to Skip to main content
15,886,110 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi,

I want to see my aspx page visitor and save it on sql server.
Please provide me complete solution ASAP.
Posted
Comments
Mohd. Mukhtar 10-Jan-13 2:31am    
What have you tried so for?
vishnu agarwal 10-Jan-13 2:36am    
I want to count my aspx page visitor

Hi,

Solution

http://statcounter.com/[^]
 
Share this answer
 
Comments
Thomas.TangLin 10-Jan-13 2:48am    
first you should recorded the data when visitor visit you aspx page,and then you can use script as:

select visitor_id ,count(1) from table group by vistitor_id order by date desc;

Advanced: if you want to think over Performance ,will think other way。
Just create a table into database with column id, date and counter. And update counter by one in page load method with where condition on date column.

Check successful update or insert row for first visit.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900