We're using google analytics in our webforms site. I have the google analytics javascript loading in the head section of the masterpage like this...
<%if (!IsPostBack)
{%>
<script src="Content/google.js" type="text/javascript"></script>
<%} %>
my question is, will this affect the statistics on page visit duration? We are trying to analyse how long the users are on the page for.
before i did not use the !IsPostBack statement and we found that the page visits were increasing with every post back. so now we should get better data on actual page visits, but will this affect the visit duration stats?