JSP CUSTOM TAG LIBRARIES


Examples: item tag
The following example extracts the value from the Name field in all the documents in the Customers view and displays them in a table:

<domino:view dbname="MyDatabase.nsf" viewname="Customers">
<table>
<tr><th>Name</th></tr>
<domino:docloop>
<tr>
<td><domino:item name="Name" format="HTML"/></td>
</tr>
</domino:docloop>
</table>
</domino:view>

See Also