.

HCLSoftware Business Partner
Domino Consulting Services
CRUCIAL Notes Tools
+1 212-599-2048

Domino Consulting Services
CRUCIAL Notes Tools
Domino administration
Notes development

Facebook Twitter YouTube
Chat now       
.
ProductsDownloadsNewsAbout usContact


Need a Domino Consultant? Call NotesMail +1 212-599-2048 - HCLSoftware Business Partner

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