| Author |
Servlet equivalent of property="*" for form processing
|
dibs dibley
Greenhorn
Joined: Aug 31, 2003
Posts: 13
|
|
Hi, Just wondering if there is a way to do form processing straight from a jsp to a servlet. Do i not need to use the <jsp property="*"/> to grab all the parameters. I have a number of parameters across multiple forms so i need a way to grab all the post information in one go! Anyone know? Dibs
|
 |
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12266
|
|
There is a handy request method "getParameterMap" that grabs all parameters in a single operation. The only thing to watch out for is that the values in the map are String[] - arrays of String, not a single string. See the javax.servlet.ServletRequest API Bill
|
Java Resources at www.wbrogden.com
|
 |
 |
I agree. Here's the link: jrebel
|
|
subject: Servlet equivalent of property="*" for form processing
|
|
|