I am new to Google Analytics.
I have some javascript, html, backbone code. I have inserted the google analytics tracking code in the Master Page of my project
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-33333333-1']);
_gaq.push(['_trackPageview']);
(function () {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
This Master Page is being used in 2 pages - Default.aspx and Login.aspx which have the clause MasterPageFile="~/XYZ.Master"
These Default.aspx and Login.aspx pages use HTML files during page navigation. I want to be able to track these html files as well, apart from the Default and Login Page (as shown below)
http://localhost/Servicing/Welcome.aspx - tracked by GA
http://localhost/Servicing/Login.aspx - tracked by GA
http://localhost/Servicing/# ---------> Not Tracked!
http://localhost/Servicing/#/Pay ----------> Not Tracked!
When I do View->Page Source .. on the above not tracked pages, it shows me the Google Analytics code. Please could you let me know how can i track these pages with # too?
Thanks!