The Common-Controls Tag Library

<util:jsp>

With the help of the <jsp>-tag, the directives necessary for the framework can be installed on a JSP-Page.

Tag class: JspTag
 

[ Syntax ]

Standard Syntax
<util:jsp
directive = "{includes | endofpage}"
/>
 

[ Attributes ]

AttributeTypeDescriptionReq.RTExp
directiveString Specifies which directives should be inserted on the JSP-page.
  • includes = The tag inserts all the necessary HTML-include directives for the presentation framework.
  • endofpage = The necessary tidying-up work is carried out at the end of the JSP-page. This includes, e.g., the emptying of the error collection.

[ Example ]

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"/>