Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Numbering for-each in Xsl

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
how can i number (and show) every time that the "for-each" loop is repeating.

<xsl:for-each select=&quot;BLA&quot;>
<b>number: ??</b><br>
</xsl:for-each>
 
This should work:

<xsl:for-each select=&quot;BLA&quot;>
<b>number: <xsl:value-of select=&quot;position()&quot;/></b><br>
</xsl:for-each>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top