BanManPro

The following presents a guideline on how BanManPro standard and rich media tags should be edited to count clicks in Google Ad Manager. In order to track clicks follow the procedure below:

IFRAME Code

Original Code

You should have received some IFRAME code from BanManPro that looks similar to the following example:

<iframe src="https://version9.banmanpro.com/a.aspx?ZoneID=50&Task=Get&PageID=${CACHEBUSTER}&SiteID=66&BMPClickURL=${CLICK_URL}" width=300 height=250 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No>
<script language='javascript1.1' src="https://version9.banmanpro.com/a.aspx?ZoneID=50&Task=Get&Browser=NETSCAPE4&NoCache=True&PageID=${CACHEBUSTER}&SiteID=66&BMPClickURL=${CLICK_URL}"></script>
<noscript><a href="${CLICK_URL}https://version9.banmanpro.com/a.aspx?ZoneID=50&Task=Click&Mode=HTML&SiteID=66&SubscriberID=${CACHEBUSTER}&PageID=${CACHEBUSTER}" target="_blank">
<img src="https://version9.banmanpro.com/a.aspx?ZoneID=50&Task=Get&Mode=HTML&SiteID=66&SubscriberID=${CACHEBUSTER}&PageID=${CACHEBUSTER}" width="300" height="250" border="0"  alt=""></a>
</noscript>
</iframe>

Modified Code

What you need to do is modify the URL in the <IFRAME> tag as shown by the highlighted changes, The resulting tag should look similar to the following example:

<iframe src="https://version9.banmanpro.com/a.aspx?ZoneID=50&Task=Get&PageID=%%CACHEBUSTER%%&SiteID=66&BMPClickURL=%%CLICK_URL_ESC%%" width=300 height=250 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No>
<script language='javascript1.1' src="https://version9.banmanpro.com/a.aspx?ZoneID=50&Task=Get&Browser=NETSCAPE4&NoCache=True&PageID=%%CACHEBUSTER%%&SiteID=66&BMPClickURL=%%CLICK_URL_ESC%%"></script>
<noscript><a href="%%CLICK_URL_UNESC%%https://version9.banmanpro.com/a.aspx?ZoneID=50&Task=Click&Mode=HTML&SiteID=66&SubscriberID=%%CACHEBUSTER%%&PageID=%%CACHEBUSTER%%" target="_blank">
<img src="https://version9.banmanpro.com/a.aspx?ZoneID=50&Task=Get&Mode=HTML&SiteID=66&SubscriberID=%%CACHEBUSTER%%&PageID=%%CACHEBUSTER%%" width="300" height="250" border="0"  alt=""></a>
</noscript>
</iframe>

Note

The ad server recognises the [timestamp] placeholder and will automatically replace it with a cache buster. It is not necessary to convert it to the %%CACHEBUSTER%% macro manually.

Use %%CLICK_URL_UNESC%% at the beginning of a link. Use %%CLICK_URL_ESC%% when the click-tracker is the parameter of another URL.

<a href="%%CLICK_URL_UNESC%%https://www.google.com">link</a>
<a href="https://www.google.com?rd_url=%%CLICK_URL_ESC%%">link</a>