asp.net web stats - google analytics - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T18:27:49Z http://stackoverflow.com/feeds/question/409012 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/409012/asp-net-web-stats-google-analytics 0 asp.net web stats - google analytics oo 2009-01-03T13:01:09Z 2009-01-04T03:30:49Z <p>i want to add tracking to my website. I saw google analytics which seems to track what i need. </p> <p>So do i stick the google analytics snippet in each page, in a master page, just in my default page? what is the best practice here to get the best metrics.</p> http://stackoverflow.com/questions/409012/asp-net-web-stats-google-analytics/409015#409015 6 Answer by Martin for asp.net web stats - google analytics Martin 2009-01-03T13:03:51Z 2009-01-03T13:03:51Z <p>The google analytics code snippet has to be on every page you want to track.</p> <p>Easiest is to put the code into the master page(s) if you use them.</p> <p>Otherwise put it on every page, or put it into a user control which you can include on the relevant pages or include it using a server-side include, e.g:</p> <pre><code>&lt;!-- #include file="file_containing_google_analytics_code.js" --&gt; </code></pre> http://stackoverflow.com/questions/409012/asp-net-web-stats-google-analytics/409022#409022 0 Answer by joseph.ferris for asp.net web stats - google analytics joseph.ferris 2009-01-03T13:11:09Z 2009-01-03T13:11:09Z <p>We use Google Analytics, and have incorporated this into our base page - although our first implementation was done with an HttpModule.</p> <p>I like the base page approach, because it is a common area for some like-minded tasks. It additionally moves the viewstate to the bottom of the form, removes whitespace, etc.</p> http://stackoverflow.com/questions/409012/asp-net-web-stats-google-analytics/409132#409132 1 Answer by Steven Robbins for asp.net web stats - google analytics Steven Robbins 2009-01-03T14:47:29Z 2009-01-03T14:47:29Z <p>It depends on the structure of your site. If you have a small number of Master Pages it makes sense in there, or you could put some code to emit it in a base class that you inherit all your pages (or master pages) from, or if you have a standard footer control that you use on all pages you can put it in there.</p> <p>I generally wrap it in a Placeholder in ASP.Net and have some code the switches it on/off from a web.config setting so it doesn't appear when the site is running in test/UAT/dev machines.</p> http://stackoverflow.com/questions/409012/asp-net-web-stats-google-analytics/410379#410379 1 Answer by Yoann. B for asp.net web stats - google analytics Yoann. B 2009-01-04T03:30:49Z 2009-01-04T03:30:49Z <p>You should take a look here : <a href="http://blog.sb2.fr/post/2008/12/21/Google-Analytics-WebControl-for-ASPNET.aspx" rel="nofollow">http://blog.sb2.fr/post/2008/12/21/Google-Analytics-WebControl-for-ASPNET.aspx</a></p>