xsl-list
[Top] [All Lists]

Re: Autonumbering with XSLT

2003-01-06 07:12:23
Cheers :-)

David Carlisle wrote:
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



--
   ___
  (OvO)
  /:::\
  \|:|/
/--m-m--------------------------------+
| Peter Finch (p(_dot_)finch(_at_)homepla(_dot_)net)   |
| Home Planet Software                |
| http://www.homepla.net/             |
/-------------------------------------/




XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



<Prev in Thread] Current Thread [Next in Thread>