Programming Tutorials

Comment on Tutorial - Handling Duplicate Form Submissions in Struts By Ivan Lim



Comment Added by : floriano

Comment Added at : 2008-10-09 07:23:16

Comment on Tutorial : Handling Duplicate Form Submissions in Struts By Ivan Lim
good work.
if there is a ValidatorForm then i added this line in the top of validate function:

ActionErrors errors = new ActionErrors();
if (!isTokenValid(req) ) {
return errors;
}


View Tutorial