Re: [xsl] LOOPING WITH THE EXACT NUMBER OF ITERATIONS

Subject: Re: [xsl] LOOPING WITH THE EXACT NUMBER OF ITERATIONS
From: "Gitanjali" <narsu@xxxxxxxxxxxxx>
Date: Mon, 18 Jun 2001 07:01:25 -0400
 <xsl:variable name="start" select="number(1)"/>
 <xsl:variable name="increment" select="number(1)"/>
 <xsl:variable name="end" select="number(10)" />

     <xsl:call-template name="loop">
      <xsl:with-param name="counter" select="$start"/>
     </xsl:call-template>

 <xsl:template name="loop">
  <xsl:param name="counter"/>
  <xsl:if test="$counter &lt;= $end">
        your logic    
       <xsl:call-template name="loop">
            <xsl:with-param name="counter" select="$counter + $increment"/>
       </xsl:call-template>
  </xsl:if>
 </xsl:template>


Narsu
http://www.hytes.com


----- Original Message ----- 
From: "Jayaranga Subasinghe" <jayarangas@xxxxxxxxxxxxx>
To: <xsl-list@xxxxxxxxxxxxxxxxxxxxxx>
Sent: Monday, June 18, 2001 5:58 AM
Subject: [xsl] LOOPING WITH THE EXACT NUMBER OF ITERATIONS


> hi,
> how can I traverse a node in a xml tree for a given number of times
> 
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
> 


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


Current Thread