In which file will the server side validations will be handled
-
Page Handler
-
Action Controller
-
JSP
-
Javascript
A
Correct answer
Explanation
Server-side validations are processed in the Page Handler or server-side controller layer, not in client-side technologies like JavaScript or view technologies like JSP. The Page Handler receives the request first and can validate data before it reaches the business logic or view layer. Action Controllers typically handle routing rather than validation logic.