Mit Hilfe des <jsp>-Tag können auf einer JSP-Seite
für das Framework notwendige Direktiven angebracht werden.
Zeigt die Verwendung des <util:jsp>-Tags
<%@ taglib uri="http://www.common-controls.com/cc/tags-util" prefix="util" %>
<html>
<head>
<%-- Framework includes --%>
<util:jsp directive="includes"/>
</head>
<body onload="init()">
// Inhalt ...
</body>
</html>
<%-- Framework cleanup processing --%>
<util:jsp directive="endofpage"/>