| Overview of JSP Syntax Element |
| |
|
| Using an Implicit Object |
| |
| The following example uses the request object to retrieve and display the value of the username parameter from the HTTP request: |
| <H3> Welcome <%= request.getParameter("username") %> ! <H3> |
| |
| The request object, like the other implicit objects, is available automatically; it is not explicitly instantiated. |
| |
| |
| |
|
| |
| |