Subject: Re: Autonumbering with XSLT
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 6 Jan 2003 13:53:55 GMT
|
You could use xsl:number, which is designed to do exactly this kind of
thing, or if you want to avoid xsl:number you could do
<xsl:for-each select="//TABLE">
<xs:value-of select="1+count(preceding-sibling::TABLE)"/>
</xsl:for-each>
or
<xsl:for-each select="//DB">
<xsl:for-each select=".//TABLE">
<xs:value-of select="position()"/>
</xsl:for-each>
</xsl:for-each>
or ...
David
________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|