Subject: RE: Looping through records...
From: "Michael Kay" <mhkay@xxxxxxxxxxxx>
Date: Mon, 26 Feb 2001 22:17:52 -0000
|
> I'm trying to implement a loop, but not through the available records:
> that's easy <xsl:for-each select="whatever()" />, but I need
> to do a <% for
> i = 1 to 2 %> type of thing. This is so I can pull <xsl:value-of
> select="estimate[i]"> from another loop. Got any ideas how to do this?
> Everything I've read just explains the first loop, but that's no good.
>
> What I need to produce is two tables. The first table with this years
> results, and the next table with next years estimates. The XML is
> constructed with two estimate nodes, and on the first run, I
> want to pull
> data from the first, and then from the second on the next
> run.
Then why can't you do <xsl:for-each select="estimate">?
Mike Kay
>
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|