I think I agree with Jason. There are lots of ways to track conversions, and tracking a hit to the landing page is not the only way.
I'll make the assumption that this is for AdWords, and you're setting up goals in Google Analytics. Another option of how to do this is to JavaScript on the landing pages that push a conversion code upon form submission. AdWords has its own conversion code you can add.
Another option is to add
event tracking to the landing pages triggered upon form submission, in some JavaScript. I don't know what the exact JavaScript would be off the top of my head, but it'd watch for someone to press the Submit button then do a
_gaq.push(['_trackEvent', 'Conversion', 'Form Fillout', 'Name of Landing Page or Program']);If you want to get clever and automated with that, you could use a Marketo token as the unique identifier in that third value ("Name of Landing Page or Program", above). Then you could just add that JS snippet to every landing page you want to track.
Or, if they're really stubborn about hitting unique landing pages, and maybe they have some proprietary reason why it's necessary, you could use
_gaq.push(['_trackPageview', someurl]);, but I don't really recommend that. It'll make GA think that someone visited that specific URL, which will inflate page counts and end up confusing you in general when you're looking at your metrics.
If you do have to go that route (trackPageview), you can be clever with Marketo's tokens again, doing something like
_gaq.push(['_trackPageview', thank-you-{{my.assetTitle:default=undefined}}]);Edward UnthankMarketing Operations Specialist
Yesler