Title: JSP basics: include dynamic content at runtime Post by: Mark David on March 16, 2007, 01:47:34 PM JSP basics: include dynamic content at runtime
This method of including content reads the file at run-time after the JSP has been compiled. Changes to the included file are seen immediately and do not require recompilation of the JSP. To include the file footer.jsp at runtime, use the following syntax: Code: <jsp:include page="footer.jsp" /> |