Cached Response taglib ver. 1.2

    Custom JSP taglib lets you work with Cached Response filter. Filter accumulates all the partial output so tags from this library let you obtain an accumulated content or reset it. For example:
 


<%@ taglib uri="taglib.tld" prefix="cr" %>

do something and output it

<!-- obtain a content -->
<cr:content id="A"/>

<!-- reset content -->
<cr:reset/>

Tags are:

content

Tag lets you obtain the accumulated content. Parameters are:

1) id Optional parameter. Describes a name for your page scope variable (type is java.lang.String). Without this parameter tag just prints data.
2) charSet Optional parameter. Describes a charset for the obtained data.

reset

Tag lets you reset the accumulated content. Parameters are:

1) cond Optional parameter. Describes a boolean value tag's action depends on. Default value is true (reset)
 

for downloading:

 Library: cachedflt.jar     Description: taglib.tld

 © Coldbeans      Comments?

See also Coldtags suite - the largest collection of custom JSP tags.

Also in Coldtags: