Multiple choice technology web technology

In which file will the server side validations will be handled

  1. Page Handler

  2. Action Controller

  3. JSP

  4. Javascript

Reveal answer Fill a bubble to check yourself
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.