|
This following presents a guideline on how Adform standard rich media tags should be edited to count clicks in standard website ad management systems. Adform ad serving uses standard rich media javascript tags:
<script language="javascript" src="http://track.adform.net/adfscript/?bn=43547"></script>
<noscript>
<A HREF="http://track.adform.net/C/?bn=43547;C=0" TARGET="_blank">
<IMG SRC="http://track.adform.net/adfserve/?bn=43547;srctype=4;ord=[timestamp]" BORDER="0" WIDTH="468" HEIGHT="60" ALT=""></A>
</noscript>
In order to track clicks follow the procedure below:
- Create a click counter in your ad management system
(example: "http://www.youradsystem.com/?redirect=").
- Insert ";click=" and "http://www.youradsystem.com/?redirect=" into the redirect string*.
The resulting tag should look similar to the following example:
<script language="javascript" src="http://track.adform.net/adfscript/?bn=43547;click=http://www.youradsystem.com/?redirect="></script>
<noscript>
<A HREF="http://www.youradsystem.com/?redirect=http://track.adform.net/C/?bn=43547;C=0" TARGET="_blank">
<IMG SRC="http://track.adform.net/adfserve/?bn=43547;srctype=4;ord=yourrandomnumber" BORDER="0" WIDTH="468" HEIGHT="60" ALT=""></A>
</noscript>
"http://www.youradsystem.com/?redirect=http://www.google.com" is merely an example of a redirect url. When the url is entered into a browser it counts a click in your ad management system and redirect to http://www.google.com. By inserting ";click=http://www.youradsystem.com/?redirect=" in the Adform javascript tag the Adform system returns an ad, which (when clicked) redirects to your ad management system, which again redirects to Adform where the final redirect is performed according to the Adform database value.
EmediateAd
What you will do in order to track clicks is add the ;click= and EASLink= parameters into the redirect string as below. [timestamp] is exchanged for _U_.
<script language="javascript" src="http://track.adform.net/adfscript/?bn=43547;click=EASLink="></script>
<noscript>
<A HREF="EASLink=http://track.adform.net/C/?bn=43547;C=0" TARGET="_blank">
<IMG SRC="http://track.adform.net/adfserve/?bn=43547;srctype=4;ord=_U_" BORDER="0" WIDTH="468" HEIGHT="60" ALT=""></A>
</noscript>
Dart
What you will do in order to track clicks is add the ;click= and %c into the redirect string as below. [timestamp] is exchanged for %n.
<script language="javascript" src="http://track.adform.net/adfscript/?bn=43547;click=%c"></script>
<noscript>
<A HREF="%chttp://track.adform.net/C/?bn=43547;C=0" TARGET="_blank">
<IMG SRC="http://track.adform.net/adfserve/?bn=43547;srctype=4;ord=%n" BORDER="0" WIDTH="468" HEIGHT="60" ALT=""></A>
</noscript>
Real Media
What you will do in order to track clicks is add the ;click= and %%C%%?_RM_REDIR_= into the redirect string as below. [timestamp] is exchanged for %%REALRAND%%.
<script language="javascript" src="http://track.adform.net/adfscript/?bn=43547;click=%%C%%?_RM_REDIR_="></script>
<noscript>
<A HREF="%%C%%?_RM_REDIR_=http://track.adform.net/C/?bn=43547;C=0" TARGET="_blank">
<IMG SRC="http://track.adform.net/adfserve/?bn=43547;srctype=4;ord=%%REALRAND%%" BORDER="0" WIDTH="468" HEIGHT="60" ALT=""></A>
</noscript>
Tradedoubler
What you will do in order to track clicks is add the ;click= and $$&url= into the redirect string as below. [timestamp] is exchanged for [TD_RRANDOM].
<script language="javascript" src="http://track.adform.net/adfscript/?bn=43547;click=$$&url="></script>
<noscript>
<A HREF="$$&url=http://track.adform.net/C/?bn=43547;C=0" TARGET="_blank">
<IMG SRC="http://track.adform.net/adfserve/?bn=43547;srctype=4;ord=[TD_RRANDOM]" BORDER="0" WIDTH="468" HEIGHT="60" ALT=""></A>
</noscript>
Note: Add "http//*.adform.net" under "allowed domains".
|