Mr. Lame
Mr. Lame

Reputation: 1247

Getting webpage statistics in ASP.NET

Which free (preferably open source) component would you recommend to capture my website visitation statistics under ASP.NET? I have SqlServer available. I would prefer db at the back end vs file logging because it is reportable.

Upvotes: 0

Views: 2149

Answers (4)

user2658760
user2658760

Reputation: 1

Recording log data from your application into SQL server is only going to really bring you incremental benefit (over and above using statistics in ASP.NET) if you are logging application specific or business domain relevant events in the db.

If ALL you're wanting to do is track "webpage statistics", then your best bet is to outsource I would prefer db at the back end vs file logging because it is reportable.

Please visit:http://www.ratin.ir/details/2535/1/1/1/

راتین

Upvotes: 0

Kon
Kon

Reputation: 27451

As an alternative (to Google Analytics that some suggested), you can have an ETL process that grabs IIS logs and imports them into SQL. Then run your reports as you wish (ex. SSRS).

Upvotes: 0

Jay Stevens
Jay Stevens

Reputation: 5913

If ALL you're wanting to do is track "webpage statistics", then your best bet is to outsource it to Google via Google Analytics.

Recording log data from your application into SQL server is only going to really bring you incremental benefit (over and above using Google Analytics) if you are logging application specific or business domain relevant events in the db.

Otherwise, it is not worth the effort to do the work that Urchin (the company Google bought Analytics from) and Google have already done.

Upvotes: 0

BC.
BC.

Reputation: 24978

Forego log parsing altogether and go with Google Analytics. It's more accurate because it counts cached page views that aren't logged. It's portable. It gives a lot of great metrics. And best of all it's free.

Upvotes: 5

Related Questions