Re: [xsl] how print number from 1 to N

Subject: Re: [xsl] how print number from 1 to N
From: Oleg Tkachenko <olegt@xxxxxxxxxxxxx>
Date: Sat, 05 Oct 2002 15:12:29 +0300
Андрей Солончук wrote:

May be some body know, How to print-out in xsl numbers from 1 to N?
I simply want to generate
<tr>
<td>1</td>
<td>...</td>
<td>N</td>
</tr>

Usual approach is to use recursive template like this one: <xsl:template name="td-gen"> <xsl:param name="index" select="0"/> <xsl:if test="$index>0"> <td>...</td> <xsl:call-template name="td-gen"> <xsl:with-param name="index" select="$index - 1"/> </xsl:call-template> </xsl:if> </xsl:template>

--
Oleg Tkachenko
eXperanto team
Multiconn International, Israel


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



Current Thread