786snow
Programmer
- Nov 12, 2006
- 75
Hi, I am new to javaservlet. From the request object i do something like that to get the values. ios there a better way whete you can loop through and get the values.
Do they come in a array?
****************
String cStatement = req.getParameter("cStatement");
String cTradeCnf = req.getParameter("cTradeCnf");
String cTaxDoc = req.getParameter("cTaxDoc");
String email = req.getParameter("email");
String check_all = req.getParameter("check_all");
****************************
Thanks