
how to retrive the option value and insert the next table pls
give example

1)radio.jsp:
<html> <form method="post" action="radiobuttonvalue.jsp"> Are you a student? <input type="radio" name="sel" value="yes">Yes<input type="radio" name="sel" value="no">No <input type="submit" value="submit"> </form> </html>
2)radiobuttonvalue.jsp:
<% String selectedValue=request.getParameter("sel");
out.println(selectedValue);
%>
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.