In my application, I want to keep track of number of visitors. I am using Visual Studion 2008 and SQL Server 2005.
Thanks, Archana
In my application, I want to keep track of number of visitors. I am using Visual Studion 2008 and SQL Server 2005.
Thanks, Archana
Try google analytics.
If you don't want to expend alot of effort, the super simple solution is to use google analytics: http://www.google.com/analytics. Go to that URL, sign upad it will literally "give you the code" in the form of javascript to place at the bottom of your page.
I run a high traffic online advertising platform that requires fine grained click stream analysis of terabytes of data and that involves alot more effort, but hopefully the google analytics solution will work for you.
What you could do is add some code to your Request_Start method (in global.asax.cs) that calls into your DAL passing the appropriate data to the database. I am of course assuming you have a properly designed and layered application.