Download
FAQ History |
API
Search Feedback |
Transferring Control to Another Web Component
The mechanism for transferring control to another Web component from a JSP page uses the functionality provided by the Java Servlet API as described in Transferring Control to Another Web Component. You access this functionality from a JSP page by using the
jsp:forward
element:Note that if any data has already been returned to a client, the
jsp:forward
element will fail with anIllegalStateException
.jsp:param Element
When an
include
orforward
element is invoked, the original request object is provided to the target page. If you wish to provide additional data to that page, you can append parameters to the request object by using thejsp:param
element:When
jsp:include
orjsp:forward
is executed, the included page or forwarded page will see the original request object, with the original parameters augmented with the new parameters and new values taking precedence over existing values when applicable. For example, if the request has a parameterA=foo
and a parameterA=bar
is specified for forward, the forwarded request will haveA=bar,foo
. Note that the new parameter has precedence.The scope of the new parameters is the
jsp:include
orjsp:forward
call; that is, in the case of anjsp:include
the new parameters (and values) will not apply after the include.
Download
FAQ History |
API
Search Feedback |
All of the material in The J2EE(TM) 1.4 Tutorial is copyright-protected and may not be published in other works without express written permission from Sun Microsystems.