<!--File jsp007.jsp
02/23/00
Illustrates jsp:forward

Access http://localhost:8080/jsp007.jsp to run 
this JSP file in the Sun jswdk-1.0.1 reference 
implementation of jsp. 
-->

<html>
  <body>

    <P>Forward to jsp007a.jsp
    <jsp:forward page="jsp007a.jsp" /> 
    <P>This code never reached

  </body>
</html>


Figure 1