iteration in xsl

2004-04-27 Thread Varadharajan Sethuraman
Hi All, I just want to know the iteration functionality in xsl. for example similar to the following ... for(int i=0;i10;i++){ } or how do i achieve that functionality ... is there any workaround? kindly let me know ... Regards Varadharajan S Do you Yahoo!?Win a $20,000 Career Makeover

RE: iteration in xsl

2004-04-27 Thread Teator, Michael
L PROTECTED]Sent: Tuesday, April 27, 2004 9:17 AMTo: FOP-USER; xercesSubject: iteration in xsl Hi All, I just want to know the iteration functionality in xsl. for example similar to the following ... for(int i=0;i10;i++){ } or how do i achieve that functional

Re: iteration in xsl

2004-04-27 Thread Chris Bowditch
Varadharajan Sethuraman wrote: Hi All, I just want to know the *iteration functionality* in xsl. for example similar to the following ... *for(int i=0;i10;i++){* ** *}* or how do i achieve that functionality ... *is there any workaround?* kindly let me know ... This is a pure XSL question

Re: iteration in xsl

2004-04-27 Thread J.Pietschmann
Varadharajan Sethuraman wrote: I just want to know the *iteration functionality* in xsl. for example similar to the following ... *for(int i=0;i10;i++){* You most likely wont need it. Check your XSLT book (you have a book, haven't you?) for the position() and count() XPath functions. If you decide