I certainly hope there is a way to get radio button value otherwise what good are they...
I dont know of any good ASP code as this is a PHP forum, but in php you might want something like:
<input type=radio name="x" value=".2">
Well I certainly hope that you can get values out of radio buttons or what good are they? I dont know about any good ASP code as this is a PHP forum, but in PHP you might do something like :
In Form.php
<input type=radio name="x" value=".2">
<input type=radio name="x" value=".4">
<input type=radio name="x" value=".5">
<input type=radio name="x" value=".6">
<input type=radio name="x" value="1">
then in whatever your processing page is just multiply with x as whatever value they clicked on is in x.
ex.
$total = $x * $somenumber;
I hope that answered your question.