Hi, I was wondering if it was possible to use ASP to determine if a visitor reached one of my landing pages from a AdWords link or from an in-site link, web search or just typing in the URL. I don't think checking the HTTP Referrer will work because Google redirects visitors to the landing page when they click on an ad, so the Referrer header will just show the page that displayed the ad (which could be a Google Search.) Thanks for any help.
For AdWords: You can change the URL to go to in the Google Ad options by logging into your AdWords account, to something like this: http://www.yoursite.com/track.asp?ref=adwords Then, you can do something like this: If Request.Querystring("ref") = ("adwords") Then 'do something if user clicked AdWords ad End If Response.Redirect("/") Code (markup):