DEVFYI - Developer Resource - FYI

Can a JSP page process HTML FORM data?

JSP Interview Questions and Answers


(Continued from previous question...)

33. Can a JSP page process HTML FORM data?

Yes. However, unlike servlets, you are not required to implement HTTP-protocol specific methods like doGet() or doPost() within your JSP page. You can obtain the data for the FORM input elements via the request implicit object within a scriptlet or expression as.

(Continued on next question...)

Other Interview Questions