Techno World Inc - The Best Technical Encyclopedia Online!

THE TECHNO CLUB [ TECHNOWORLDINC.COM ] => ASP .NET => Topic started by: Mark David on March 16, 2007, 01:47:34 PM



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" />