> Hi all,
> when will the reset and validate methods call in struts action form?
I think this is clearly documented in the Struts documentation. reset()
is called before the form is populated with parameters from the incoming
request, and validate() is called after populating it.
Struts being an open source project, you can always look at the source
code as well. Look at the flow in the process() method of the
RequestProcessor class.
BK