Login |
|
Promote your web siteYou may be interested in the remote 'Rate a web site' options we have available. These allow you to place an image (or even a rating form) on your web site, in order to increase the number of votes your web site receives. Please choose from one of the options listed below:1) Text link One way to link to the rating form is through a simple text link: The HTML code you should use in this case is the following: <a href="http://www.tech-rant.com/Downloads-req-ratedownload-lid-70.htm">Rate this resource</a> The number "70" in the HTML source is your site's ID number in Tech Rant's database. Please make sure that this number is present. 2) Button link If you'd like to use something more than a basic text link, you may wish to use a small button link: <form action="http://www.tech-rant.com/Downloads.htm"method="post"> <div> <input type="hidden" name="lid" value="70" /> <input type="hidden" name="req" value="ratedownload" /> <input type="submit" value="Rate this web site!"> </div> </form> 3) Remote rating form If you attempt to manipulate the ratings, your link will be removed. Here is what the current remote rating form looks like. Using this form will allow users to rate your resource directly from your site, with the rating being recorded here. The above form is disabled (it is just shown for your information), but the following source code will work if you simply copy and paste it into your web page:
<form method="post"
action="http://www.tech-rant.com/Downloads.htm">
<div>
<table border="0" width="175" cellspacing="0" cellpadding="0">
<tr>
<td align="center">
<b>Vote for this site!</b>
</td>
</tr>
<tr>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td valign="top">
<select name="rating">
<option selected>--</option><br>
<option value="10">10</option><br>
<option value="9">9</option><br>
<option value="8">8</option><br>
<option value="7">7</option><br>
<option value="6">6</option><br>
<option value="5">5</option><br>
<option value="4">4</option><br>
<option value="3">3</option><br>
<option value="2">2</option><br>
<option value="1">1</option><br>
</select>
</td>
<td valign="top">
<input type="hidden" name="ratinglid" value="70" />
<input type="hidden" name="ratinguser" value="outside" />
<input type="hidden" name="req" value="addrating" />
<input type="submit" value="Vote!" />
</td>
</tr>
</table>
</td>
</tr>
</table>
<div>
</form>
Important note: line breaks in the URL's and form actions shown above are for readability only. The URL's and form actions you submit should be on a single line. Thanks, and good luck with your ratings! - Tech Rant Staff |
|