Hi, I work with a form and I want to display a table which indicates the choices made by the user. I must check check boxes and radio buttons. The following method functions well for the text area: <tr> <td align="right"> <B>Name</B> </td> <td align="left"> <%request.getParameterValues(Name);% </td> </tr> But i nee to do the same with the radio buton and check boxes. Can somebody help me? Thanks Jeff
Alag Solai
Greenhorn
Joined: Jun 26, 2001
Posts: 3
posted
0
Hi, on the client side create all check box and radio button INPUT html tags with same name. Then you can use request.getParameter(valueofNameattribute) for Radio button and request.getParameterValues(valueofNameattribute) for checkboxes. request.getParameterValues returns array of strings, so you can look through to find out the options selected by the user.
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.
subject: request.getParameterValues() for radio buttons