Subject: RE: count and write number of nodes
From: "Andreas L. Delmelle" <a_l.delmelle@xxxxxxxxxx>
Date: Tue, 30 Dec 2003 14:08:16 +0100
|
> -----Original Message-----
> From: Dionisio Ruiz de Zarate
>
<snip />
>
> using xsl how can count the number of pagina nodes (5 in this example)
Hi,
Suppose you have a template for 'registros', then inside the template you
can count the number of pagina-nodes, like:
<xsl:template match="registros">
<xsl:value-of select="count(./registro/pagina)" />
<xsl:apply-templates select="./registro/pagina" />
</xsl:template>
> and how can i put:
> 1.- the page node value (<xsl:value-of select="pagina"/>
> 2.- the next page
<xsl:template match="pagina">
<xsl:value-of select="." />
</xsl:template>
>
> how can i count the nuber of pages and show in order 1, 2 , 3, 4, .....n
> pages
>
The above templates will normally suffice to give you an output like :
5
the page a
the page b
the page c
the page d
the page e
Hope this helps!
Cheers,
Andreas
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|