ON THIS PAGE
xsl:for-each
Syntax
<xsl:for-each select="node-set-expression"> ... </xsl:for-each>
Description
Include a looping mechanism that repeats XSL processing
for each XML element in the specified node-set. The element nodes
are selected by the XPath expression
defined by the select
attribute. Each of
the nodes is then processed according to the instructions contained
in the <xsl:for-each>
element.
Attributes
select | Specifies an XPath expression that selects the nodes to be processed. |