<template:get>
Returns the contents of a specified JSP-fragment - it thus defines
a placeholder for a JSP-fragment in a template.
The tag may only be used within a <template:insert>-tag.
It can thus, in particular, be used in a JSP template, since
these are located in the Scope of a <template:insert>-tag!
Body content: JSP
Tag class: GetTag
[ Syntax ]
Standard Syntax
<template:get
name =
"String"
>
...Body Content...
</template:get>
[ Attributes ]
Attribute | Type | Description | Req. | RTExp |
name | String |
Specifies the logical name of a JSP-fragment.
Annotation:
The name must match with a placeholder in the JSP template used.
The template is defined in the enclosing <template:insert>-tag.
|
|
|
[ Example ]
The <template:get>-tag is inserted in a template to draw
a menu at a certain location.
<%@ taglib uri="http://www.common-controls.com/cc/tags-template" prefix="template" %>
<html>
<head/>
<body>
<table width="100%" cellspacing="0" cellpadding="0">
<tr>
<td><template:get name="header"/></td>
</tr>
<tr>
<td><template:get name="mainmenu"/></td>
</tr>
</table>
</body>
</html>