I have created a form, using the HTML creative. How do I count clicks in it?
Answer:
For the system to count clicks on links in forms, you must rewrite the click URL. Just before the click URL you must insert “EASForm=”.
Example 1:
<form method=get action="http://www.advertiser.com/offer.html"> must be rewritten to: <form method=get action="EASForm=http://www.advertiser.com/offer.html">
-
The argument action=“EASForm=http://...” must be in the end of the form-tag.
-
The value of action= must be between quotation marks.
-
The expression EASForm is case sensitive.
-
Method must be GET and not POST.
Example 2:
<form method="GET" action="http://www.emediate.com/" target="_blank"> must be rewritten to <form method="GET" target="_blank" action="EASForm=http://www.emediate.com/">

<form method="GET" target="_blank" action="EASForm=http://www.emediate.com/?">
Comments
0 comments
Please sign in to leave a comment.