Website custom tracking
Posted
by
Francisco Goldenstein
on Programmers
See other posts from Programmers
or by Francisco Goldenstein
Published on 2014-06-10T14:16:57Z
Indexed on
2014/06/10
15:39 UTC
Read the original article
Hit count: 194
I'm using ASP.NET MVC 4 and I want to track the incoming traffic of my site to know things like: 1) How many users that clicked a Google Adwords advertisement have bought one particular product? 2) Ranking of buyers grouped by Google Adwords advertisements.
I could add a parameter to the URL like mysite.com?source=advertisement1234 but I want to avoid this practice to have cleaner URLs and for SEO purposes. Url.Referrer is not going to give me that information either, it's just going to say that the referrer is Google.
Any suggestions? Thanks in advance!
© Programmers or respective owner