On 1/24/2003 11:49 PM, Wendy Smoak wrote:
/*only validate if the form has actually been submitted.I You are using POST method for sending request (and probably yes) I would exchange Your code for this one:
We can tell this by checking to see if the Submit
button is in the request
*/
if (request.getParameter("Submit") != null) {
return super.validate( mapping, request );
} else {
return null;
}
if (request.getMethod().equals("POST")) {
return super.validate( mapping, request );
} else {
return null;
}
plastic
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

