|
Here
is a possible solution, use the recursive call-template.
<xsl:template
name="myloop">
<xsl:param name="index" select="''"/> <!-- beginning index --> <xsl:param name="end" select="0"/> <!-- ending index --> Do My Work Here ... <xsl:if test="$end != 0 and $index != $end"> <xsl:variable name="index2" select="$index + 1"/> <xsl:call-template name="myloop"> <xsl:with-param name="index" select="$index2"/> <xsl:with-param name="end" select="$end"/> </xsl:call-template> </xsl:if> </xsl:template> Steve Lihn
-----Original Message----- From: xavier gibouin [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 05, 2002 9:47 AM To: [EMAIL PROTECTED] Subject: Re:xsl loop
------------------------------------------------------------------------------ |
