On Thu, 2001-10-18 at 01:58, Clark, Jason wrote:
> Hello All,
>
> I have one node that holds a value of say 5 (this number could be any number
> 1-5 ). I need to take that value and create 5 links that point to different
> locations. Since the for-each is only a iterator across node sets, how
> would I handle this.
use a recursive template:
<xsl:template name="loop">
<xsl:param name="index" />
.................
.................
<xsl:if test="$index $gt; 0">
<xsl:call-template name="loop">
<xsl:with-param name="index" select="$index - 1"/>
</xsl:call-template>
</xsl:if>
</xsl:template>
Just insert the code you want where the dots are and on the initial call
set the value of index appropriately
gavin
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
| Current Thread |
- for loop
- Clark, Jason - Wed, 17 Oct 2001 14:05:49 -0400 (EDT)
- Gavin Corfield - Wed, 17 Oct 2001 21:44:58 -0400 (EDT) <=
- Oleg Tkachenko - Thu, 18 Oct 2001 05:35:17 -0400 (EDT)
- Michael Kay - Thu, 18 Oct 2001 06:28:52 -0400 (EDT)
|
|