RE: Is childNumber a MSXML function?

Subject: RE: Is childNumber a MSXML function?
From: Kay Michael <Michael.Kay@xxxxxxx>
Date: Wed, 3 Nov 1999 16:07:08 -0000
> 
>  I have a piece of code in my XSL file that looks like this:
> 
> <xsl:if expr="(childNumber(this) % 2) == 0">
> 
> It renders great in IE5

The nearest equivalent in XSLT is

<xsl:if test="(position() mod 2) = 0">

which shows just how far these two languages have diverged.

Mike Kay


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


Current Thread