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:50:22 PM



Title: JSP basics: include directive to read content at compile time
Post by: Mark David on March 16, 2007, 01:50:22 PM
JSP basics: include directive to read content at compile time

JSPs are compiled entities. Two include techniques read the included content before and after compilation. This recipe describes the compiled include directive.

When including a file header.jsp with the following syntax:

Code:
<%@ include file="header.jsp" %>

the contents of header.jsp are read into the JSP before it is compiled. Subsequent changes to the header.jsp file will not be included in the JSP until the JSP is recompiled.