asp.net web stats - google analytics - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T18:27:49Zhttp://stackoverflow.com/feeds/question/409012http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/409012/asp-net-web-stats-google-analytics0asp.net web stats - google analyticsoo2009-01-03T13:01:09Z2009-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#4090156Answer by Martin for asp.net web stats - google analyticsMartin2009-01-03T13:03:51Z2009-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><!-- #include file="file_containing_google_analytics_code.js" -->
</code></pre>
http://stackoverflow.com/questions/409012/asp-net-web-stats-google-analytics/409022#4090220Answer by joseph.ferris for asp.net web stats - google analyticsjoseph.ferris2009-01-03T13:11:09Z2009-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#4091321Answer by Steven Robbins for asp.net web stats - google analyticsSteven Robbins2009-01-03T14:47:29Z2009-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#4103791Answer by Yoann. B for asp.net web stats - google analyticsYoann. B2009-01-04T03:30:49Z2009-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>