I should of said I am using the Microsoft XSL parser. So how would do it
there.
-----Original Message-----
From: David Carlisle [mailto:davidc@xxxxxxxxx]
Sent: Friday, March 24, 2000 11:28 AM
To: xsl-list@xxxxxxxxxxxxxxxx
Subject: Re: Detecting every other node?
> This e-mail has been sent in confidence to the named addressee(
one of which is an automated system that sticks it on a public web
site....
> I am trying to apply a different template for every other row
The example of colouring alternating rows of a table is in the xslt
spec. There are other examples in the faq.
<xsl:choose>
<xsl:when test="position() mod 2 = 0"> do this ...
<xsl:otherwise> do something else> ....
David
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|