The Include Action
The jsp:include action temporarily transfers control from the current JSP page to another location, and includes the text generated by the other page in its own output.
Syntax is, e.g.:
<jsp:include page=“banner.html” />
As with jsp:forward, jsp:param elements may be optionally included in a body.
This is subtly different from the include directive, which includes text, before translation of the JSP.