Das Tag Prüft die Existenz eines JSP-Fragmentes und führt
im Erfolgsfall den Body-Content aus.
Das Tag darf nur innerhalb eines <template:insert>-Tags
verwendet werden. Es kann also insbesondere in einer JSP-Schablone
eingesetzt werden, da sich diese im Scope eines <template:insert>-Tag
befindet!
Das <template:present>-Tag wird in einer Schablone
eingesetz um eine optionale Suchmaske auszugeben.
<%@ taglib uri="http://www.common-controls.com/cc/tags-template" prefix="template" %>
<html>
<head/>
<body>
<table width="100%" cellspacing="0" cellpadding="0">
<!-- Display search dialog -->
<template:present name="search">
<tr>
<td><template:get name="search"/></td>
</tr>
</template:present>
<tr>
<td><template:get name="mainmenu"/></td>
</tr>
</table>
</body>
</html>