Controls inside grid, posting to server Problem
I have a collection of input controls (combo, radio button) inside a grid, the grid is within a <FORM> element, so I assume that when I do a HTTP POST, the controls value will be sent as parameters. I've set the name of the controls by using :
At the server side, I call request.getParameter("myCombo")... but have no luck, means the controls values are not posted...
Did I get anything wrong ?
Thanks
combo.setAttribute("name", "myCombo");
radio.setAttribute("name", "myRadio");
At the server side, I call request.getParameter("myCombo")... but have no luck, means the controls values are not posted...
Did I get anything wrong ?
Thanks
Derek
March 13,