Bear Bibeault wrote:If you are submitting to a servlet (as you should be -- a JSP should never be the target of a submission) you don't need all of that useBean crap in the JSP. Get rid of it.
In the servlet, you'll fetch the submitted data through the request.getParameter() family of methods on the request instance.
Well, I guess that if the value in the jsp need to be initialized, this has to happen in the bean, hasn't it?
I understand I can do a getParameter for each field, but it would be much more convenient if the bean members would get all populated at once... Would save me a lot of line of codes...
But thanks a lot for your help
Jean-Noël