getParameter with parameter names aut. generated
Hello,
I have a form and the parameter names are generated automatically... that is to say I don't know the parameter names (Those are in fact attributes read from a list).
My question is: When I submit the file, how can I read the parameter names????? I can't do a getParameter(<param_name>) since I don't know the name!!!
Help me please!!
THank you
I generate the form the following way:
<form .... name="attributes" ...>
<table>
<tbody>
<tr>
<%
for (int i=1; i < ainfo1.length; i++)
{
name=ainfo1[i].getName();
value = mbsc.getAttribute(mbeanName1,ainfo1[i].getName();
%>
<td><%=name%>: </td>
<td>
<input type=text name=<%=name%> value=<%=value%>>
<%
}
%>
</td>
</tr>
<%
}
%>
</tbody>
</table>
<input .....>
</form>
|