RE: number . . .

Subject: RE: number . . .
From: Kay Michael <Michael.Kay@xxxxxxx>
Date: Fri, 27 Oct 2000 17:34:05 +0100
> I mean, is there any way to do something like this:
> 
> <xsl:variable name="prueba"><xsl:number level="multiple"
> select="nodo[@accion=$url]"/></xsl:variable>
> 
Yes, you can do:

<xsl:variable name="prueba">
  <xsl:for-each select="nodo[@accion=$url]">
    <xsl:number level="multiple"/>
  </xsl:for-each>
</xsl:variable>

Mike Kay


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


Current Thread