JSP CUSTOM TAG LIBRARIES


Examples: user tag
The following code retrieves the document specified in the <%=unid%> parameter and displays "Greetings userName!," where userName is the user or server name specified in the lotus.domino.Name object. If the document specified using the <%=unid%> parameter does not exist, "No document with the UNID unidNumber exists." displays.

<domino:document unid="<%= unid %>">
Greetings <domino:user debug="true"/>!
</domino:document>
<domino:nodocument>
No document with the UNID <%=unid%> exists.
</domino:nodocument>

See Also