The aim of this workshop is to make use of the include action tag to include the output of one file in another.
This workshop should take no longer than 60 minutes.
The following demonstrates the objective of this workshop.
This file is a JSP whose output we want to include in another JSP. For interest you can read the code in this JSP to see how it works.
<HTML> <HEAD> <TITLE>JSP Course - Request Workshop</TITLE> <LINK rel="stylesheet" type="text/css" href="/course.css"> </HEAD> <BODY> </BODY> </HTML>
<BODY> tag add an include action tag to include the output of
"include2.jsp". To this tag add a parameter action tag that has a name attribute
called "Name" and a value attribute of "YourName".if you couldn't get your solution to work then click the icon to display the
source code.

If the JSP that is being included fails to execute then the error messages generated will be displayed as the include. Try this in the above workshop by making a mistake in the code - drop a semicolon or something.
The next section looks at the <jsp:forward/> action tag that allows you to
redirect the workflow on the server. This is similar to the sendRedirect() method we
met earlier and you may want to read this section again.