If you are using the ValidatorForm, another good trick is to key off the
page property it provides.
In the reset function, put in a wrapper like this:
if (getPage()==0) {
setForward(null);
setName(null);
setTelephone(null);
setNumber(null
If you are forwarding from Action to Actoin, the ActionServlet will
handle each request the same as the first.
If you do not want your ActionForm to be repopulated from the request as
you forward it around, the workaround is to put an readonly property on
the form. The public setters for your pr
2 matches
Mail list logo