jsp指令与动作元素
include指令
<%@include file="URL" %>\
include动作
<jsp:include page="URL" flush="true|false"/>
page:要包含的页面
flush:要包含的页面是否从缓冲区读取
for word动作
<jsp:forword page="URL"/>
等同于
request.getRequestDispatcher("URL").forword(request,response);
param动作
<jsp:param name="参数名" value="参数值" />
常与jsp:forword动作一起使用,作为其的子标签