求一个跳转语句,使得跳转页面执行完后,原页面的html还能输出。比如说一下程序:
<body>
     <jsp:include page="hello.jsp" flush="true"></jsp:include>
     <table border=1 bordercolorlight=#000000>
     <tr>
        <td width=60 align=center>代码</td>
        <td width=80 align=center>商品名称</td>
        <td width=80 align=center>品牌</td>
        <td width=180 align=center>产品简介</td>
        <td width=80 align=center>存货数量</td>
        <td width=80 align=center>价格/元</td>
        <td width=50 align=center>更改</td>
        <td width=50 align=center>删除</td>
     </tr>
  </table>
  
  <%
  request.getRequestDispatcher("/getAllProducts").include(request,response);---------这个跳转语句要怎样写才能使执行完后,既输出了hello.jsp,表格的内容,又执行了/getAllProducts的内容
   %>