Forwarding a request to another page is easy in JSP using forward action. The JSP forward action is written as:
|
Code:
|
<jsp:forward page="relativeURL"/> |
Example:
|
Code:
|
<jsp:forward page="welcome.html"/> |
Forwarding a request means that even the request object is forwarded to the target page.