> -----Original Message-----
> From: A mailing list about Java Server Pages specification
> and reference
> [mailto:[EMAIL PROTECTED]]On Behalf Of Cory L Hubert
>
>         Hey. Is there a way to process forms through a Bean.
>  So when the submit
> button is clicked a method is ran that would process all the
> parameters.

You can use the setProperty tag with property="*" and it will set all the
bean properties that have the same names as any request parameters, to the
values of these parameters.
ie
   <jsp:setProperty property="*" name="yourBean"/>

HTH,

Steve S

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
FAQs on JSP can be found at:
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html

Reply via email to