jsp request object

Read Client Form Data JSP 3 Ways Example

request is an object of HttpServletRequest and is one of the 9 implicit objects, JSP supports. request object is used to retrieve client’s system (like IP address) information, client’s browser (header) information and the data entered by the client in the <form> fields. To retrieve what the client entered in the <form> fields, request object …

Read Client Form Data JSP 3 Ways Example Read More »

implicit object request JSP Example

1. What is implicit object request JSP? request is one of the 9 implicit objects, JSP supports. request is an object of javax.servlet.http.HttpServletRequest interface. Being implicit, it comes into existence (or created) automatically and the Programmer can use the object in his code without the necessity of creation. 2. With implicit object request JSP, what …

implicit object request JSP Example Read More »