August 2003
Intermediate to advanced
736 pages
14h 14m
English
Topics in This Chapter
Using jsp:include to include pages at request time
Using <%@ include ... %> (the include directive) to include files at page translation time
Understanding why jsp:include is usually better than the include directive
Using jsp:plugin to include applets for the Java Plug-in
JSP has three main capabilities for including external pieces into a JSP document:
The jsp:include action. The jsp:include action lets you include the output of a page at request time. Its main advantage is that it saves you from changing the main page when the included pages change. Its main disadvantage is that since it includes the output of the secondary page, not the secondary page's actual code as with ...
Read now
Unlock full access