Reputation: 160
I am working on an ASP.NET website with sql server 2008 R2. i need to implement a tracking system to track user activity as which pages the user browsed which item liked and so on i have a lot of options and tried couple of them
Upvotes: 3
Views: 1244
Reputation: 93424
I would use something like Google analytics. It's easy, you just put the boilerplate code into your pages, and google does the rest.
Upvotes: 1
Reputation: 3634
You can try using a logging framework like log4net or nLog which gives you the flexibility to log to various targets and also use buffering / asynchronous logging to reduce the load.
Upvotes: 1