Variable | Class | Description |
---|---|---|
application | The context for the JSP page's servlet and any Web components contained in the same application. See Accessing the Web Context. | |
config | Initialization information for the JSP page's servlet. | |
exception | Accessible only from an error page. See Handling Errors. | |
out | The output stream. | |
page | The instance of the JSP page's servlet processing the current request. Not typically used by JSP page authors. | |
pageContext | The context for the JSP page. Provides a single API to manage the various scoped attributes described in Using Scope Objects . This API is used extensively when implementing tag handlers (see Tag Handlers). | |
request | subtype of javax.servlet. | The request triggering the execution of the JSP page. See Getting Information from Requests. |
response | subtype of javax.servlet. | The response to be returned to the client. Not typically used by JSP page authors. |
session | The session object for the client. See Maintaining Client State. |
Wednesday, November 11, 2009
Implicit Objects in jsp
Subscribe to:
Post Comments (Atom)
1 comments:
Thanks for such a nice info
Post a Comment