jsp:param
<jsp:include page="{urlSpec | <%= expression %>}" flush="true | false" >
   <jsp:param name="PN" value="{PV | <%= expression %>}" /> *
</jsp:include>
include的页面用request.getParameter("PN");得到


exception 对象
exception 对象和session 对象一样,并不是在每一个JSP 网页中都能够使用。若要使用exception 对象时,必须在page 指令中设定。
<%@ page isErrorPage="true" %>
三个方法:getMessage( )、getLocalizedMessage( )、printStackTrace(new java.io.PrintWriter(out)) ,其中printStackTrace( )的参数要为PrintWriter 而不是JspWriter。