学习JSP与Tomcat之转向其他jsp

来源:互联网 发布:那个网站注册域名便宜 编辑:程序博客网 时间:2024/04/28 19:30

<HTML><HEAD><TITLE>Forward1 Page</TITLE></HEAD>
<body>

 <p>
  This is output of JspForward1 before forward
 </p>

        <jsp:forward page="jspForward2.jsp" />

        <p>
  This is output of JspForward1 after forward
 </p>
</body></html>