D.1 Tag Library Import
In order to use Style Intelligence tags in a JSP page, you need to import the tag library. This is done by using a JSP taglib directive:
<%@taglib uri="sree.tld" prefix="sree"%>
This tells the JSP that all tags that start with “<sree:” refer to the tag library defined in the web.xml file with the URI of sree.tld. The prefix is an XML namespace prefix. This means that any tag included in the page needs to be prefixed with “sree:”. This prevents naming collisions if another tag library has a tag of the same name.
| << Appendix D: Configuring Style Intelligence for JSP Tags | © 1996-2013 InetSoft Technology Corporation (v11.4) | D.2 Cache Tag >> |