Hi all I am having a jsp page where I have entered radion button value ,like this:--
<td><input type="radio" name="billType" value="1"/> <font color =blue> Brief Bill</font></td>
<td><input type="radio" name="billType" value="2" /> <font color =blue>Detailed Bill</font></td>
<td><input type="radio" name="billType" value="3" /> <font color =blue>Itemized bill</font></td></tr>
Now I want to get this value in my class in an integer variable so that I can use it at other places also, how can I get this integer value out of it.