Make sure the parameters are named, and then use a
request.getParameter(parmName) to get the value of the parameter.
Ex.
<input type=hidden name=Parm1 value="Value1">
then, when processing the post/get do
String parm1 = request.getParameter("Parm1");
and parm1 will be equal to "Value1".
You will then be able to manipulate the values as you see fit.
===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:
http://java.sun.com/products/jsp/faq.html
http://www.esperanto.org.nz/jsp/jspfaq.html
http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets