May 2004
Beginner to intermediate
1032 pages
23h 48m
English
Directives are used to define information about your page to the translator; they do not produce any HTML output. All directives have the following syntax:
<%@ directive [ attr="value" ] %>
where directive can be page, include, or taglib. Typically JSP directives are included before the HTML <HEAD> tag of your JSP.
The page and include directives are described here, and the taglib directive is described tomorrow when Tag Libraries are studied in detail.
You use the include directive to insert the contents of another file into the Web page as the page is translated. The included file can contain HTML or JSP tags or both. It is a useful mechanism for including the same page directives in all your JSPs or reusing ...
Read now
Unlock full access