Hi,
I am new to
Java...
I want to use html:radio tags to show a series of radio button in my
jsp:
<tr><html:radio property="billOptions" value="1"> All Bill Months</html:radio></tr>
<tr><html:radio property="billOptions" value="2">Current</html:radio></tr>
<tr><html:radio property="billOptions" value="3"> In Progress</html:radio></tr>
<tr><html:radio property="billOptions" value="4"> Custom Bill Months</html:radio></tr>
<tr><html:radio property="billOptions" value="5"> Custom Bill Dates</html:radio></tr>
I am setting billOptions in my form to value 2 - so current is checked.
How do I get the value that the user picks - do I have to iterate through billOptions to see what they choose?