![]() |
![]()
This object contains page scope variables. In particular,
beans declared with the jsp:useBean page scope are stored in the
pageContext attribute.
Returns the JspWriter for this response. This is the same
as the JSP 'out' implicit variable. JspWriter has the same properties and
methods as output streams.
Returns the page's application
object. Along with application variables, the application
object lets scripts dynamically include files and forward results.
Returns the page's generated servlet.
Note: This is not the JSP engine's servlet, but the servlet generated for the particular JSP page.
Returns the page's request
object. The request object contains information from the HTTP
request, such as form data and allows forwarding pages to pass along
attributes.
Returns the page's response
object. The response object lets application set response
headers and status codes. In general, JSP applications will write to
the 'out' object instead of using the response object directly.
For error pages,
returns the thrown exception.
Includes the dynamic contents of the page at
.
is relative to the current page and its root is the
application root.
Includes the dynamic contents of the page at
.
is relative to the current page and its root is the
application root.
|