What are the methods Action Form has ?
-
validate()
-
reset()
-
validate() & reset ()
-
none of these
C
Correct answer
Explanation
ActionForm defines two key lifecycle methods: validate() for validating form inputs and reset() for resetting form properties to default values. Both methods are called by the controller at appropriate times - validate() before action execution and reset() before form population.