Hi everyone,
    i am trying to pass multiple form parameters which are there in the request.getParameter collection of the jsp page to a bean which must have the methods defined to return the values to be displayed on the page. The example with one form field works fine but when i try to post the form with more than one form field i get the error  
 
    Method for reading < surname >  not found , where surname is the name of the text field.
 
  1. Do i have to write individual set and get methods for each parameter passed.
  2. What does property="*" in the following code imply
            <jsp:useBean id="mybean" scope="page"  class="hello.NameHandler" />
            <jsp:setProperty name="mybean" property="*" />

Thanks in advance
 
Mitul  

Reply via email to