Re: [xsl] msxml xpath problem

Subject: Re: [xsl] msxml xpath problem
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 2 Jul 2003 11:06:46 +0100
  <xsl:value-of select="child::*[2][name()='arg']"/>

(which is better written as

<xsl:value-of select="child::*[2][self::arg]"/>
as that is more robust in the face of namespaces)

selects the second element if it is an arg, and nothing otherwise

  <xsl:value-of select="child::arg[2]"/>

selects the second arg (if there are two or more) and nothing otherwise.


> Is there a bug
> with msxml anywhere that would explain such loss of conte

As much as I'd like to blame microsoft, i fear the bug is elsewhere:-(

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

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


Current Thread