With the help of the <jsp>-tag, the directives necessary
for the framework can be installed on a JSP-Page.
Shows the use of the <util:jsp>-tag.
<%@ 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"/>