🎴 Flashcard Mode

JSP and Servlet Web Development

Card1 / 11
Mastered0
Review0
QuestionClick to flip

In which file will the server side validations will be handled

AnswerClick to flip back
A
Page Handler
💡 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.

Change Mode