Add a search box
From NETIM
You can add onto your website a search box in order to drive your visitors directly to the availability check of domain names.
To do this you will find two examples below. Copy and paste the HTML code and place it on your site to the place of your choice. The examples below are minimalist but you can customize the HTML to fit better on your site.
Your affiliate code is the handle of your account. Suppose your affiliate code is AA100, the parameter for tracking will be the hidden field partnerid with the value AA100
Simple Input Box
<form action="http://en.francedns.com/domain/search-results.html" method="post"> <center> Register your domain name !<br /> www. <input name="DOMAINE" type="text" /> <input name="Submit" type="submit" id="Submit" value="Check" /> <input name="partnerid" type="hidden" value="AA100"/> <center> </form>
Zone de saisie avec liste déroulante d'extensions
<form action="http://en.francedns.com/domain/search-results.html" method="post"> <center> Register your domain name !<br /> www. <input name="DOMAINE_INDEX" type="text" id="DOMAINE_INDEX" /> <select name="SELECT_EXT" id="SELECT_EXT"> <option value=".com">.COM</option> <option value=".net">.NET</option> <option value=".be">.BE</option> <option value=".ch">.CH</option> <option value=".fr">.FR</option> <option value=".eu">.EU</option> </select> <input name="Submit" type="submit" id="Submit" value="Check" /> <input name="partnerid" type="hidden" value="AA100"/> </center> </form>