<html>
<head>
<title>Include Directive</title>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<div id="Description">
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="main">
<tr>
<td valign="top" class="NAME">Include Directive</td>
<td valign="top" class="COMPATIBILITY">&nbsp;</td>
</tr>
<tr>
<td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
</tr>
<tr>
<td valign="top" colspan="2" class="description">
<p>The <span class="LITERAL">include</span> directive includes a file, merging its
content with the including page before the combined result is
converted to a JSP page implementation class.
</p>

<p>A single page can contain multiple <span class="LITERAL">include</span>
directives. Together, the including page and all included pages form
a <em>JSP translation unit</em>.
</p>

<p>Example:</p>

<span class="PROGRAMLISTING"><pre>&lt;%@ include file="header.html" %&gt;</pre></span>

</td></tr>
</table>
</div>
<div id="file">
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="main">
<tr>
<td valign="top" class="NAME">file</td>
<td valign="top" class="COMPATIBILITY">No default</td>
</tr>
<tr>
<td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
</tr>
<tr>
<td valign="top" colspan="2" class="description">
<p>A page- or context-relative URI path for the file to include.</p>
</td>
</tr>
</table>
</div>
</body>
</html>