Emits the following: attr="BODY". The purpose of this tag is to aid in the construction of tag attributes, whose content is dynamically generated.
JSP
<utilsPrefix:link>
None.
This tag has the following attributes for which the Required value is “Yes”:
The fragment of text to emit prior to: ="BODY".
This tag provides the following bean properties for which the Access value is “n/a”:
n/a
<%-- example of attr tag usage --%> <util:link tagstart="<a" tagend=">"> <util:attr attr="href"> <util:url path="/DesktopServlet"></util:url> </util:attr> <util:attr attr="method">GET</util:attr> </util:link>GO HOME</a>
Will generate a link that includes session encoding, if needed. The "path" attribute is not subject to the rules of file lookup. The emitted markup may look something like: <a href="/DesktopServlet?sid=1a34" method="GET"/>