Hi all,
I am using the following code to create the radio button group in which i have a while loop which will create the radio buttons with same name and different values.
here "no_of_elements " is an interger value..
Does anyone knows how to get the value of the checked radio button in next jsp after submitting the form??
Any help will be appriciated!!
Thanks!
I am using the following code to create the radio button group in which i have a while loop which will create the radio buttons with same name and different values.
Code:
while(rs.next()){
<INPUT TYPE="radio" NAME="RadioValues" VALUE="A"+no_of_elements>
}
Does anyone knows how to get the value of the checked radio button in next jsp after submitting the form??
Any help will be appriciated!!
Thanks!
Comment