[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: LOOPING WITH THE EXACT NUMBER OF ITERATIONS

Subject: Re: LOOPING WITH THE EXACT NUMBER OF ITERATIONS
From: "Gitanjali" <narsu@xxxxxxxxxxxxx>
Date: Mon, 18 Jun 2001 07:01:25 -0400
exact number
 <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:  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

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.