The JSP spec. says that "page" attribute of jsp:inclue action accepts a request-time attribute value (P. 65)
but the fellowing jsp code
 
<%
    String where ="some thing to include";
%>
<jsp:include page='<%=where%>' />
 
will translate to
 
application.getRequestDispatcher("<%=where%>").include(request, response);
 
I think it' s a bug ? who's fault ?
 
-Brenden- @_@

Reply via email to