>Let's say I have a web page called /emailForm.jsp with a form and a
>submit button. Let's also say that /emailForm.jsp receives some
[quoted text clipped - 7 lines]
>those request parameters to the application or session using a tag
>library?
Yes, just add them as a hidden field, (or visible if you want).

Signature
Last year I went to Iraq. Before Team America showed up, it was a happy place. They had flowery meadows and rainbow skies, and rivers made of chocolate, where the children danced and laughed and played with gumdrop smiles.
boanator@gmail.com - 02 Dec 2005 18:50 GMT
Thanks for the advice, it works just fine. However, I create my form
on my jsp page using the tag:
<html:form>
...
</html:form>
In order to add these hidden fields, I need to add the regular html
input field inside my form. For example:
<html:form method="POST" action="/submitEmailForm">
...
<html:text property="from"/>
<html:text property="to"/>
...
<input type="hidden" name="comments" value="<%=
request.getParameter("comments") %>"/>
</html:form>
Since the parameters I would like to pass on are not part of the form
bean, I cannot use the tag:
<html:hidden property="comments"/>
So I must use the regular html tag:
<input type="hidden" name="comments" ... />
Is this a wise thing to do? Could this possibly cause any errors with
my struts application?