Re: [xsl] Microsoft msxml3.0 v. msxml4.0

Subject: Re: [xsl] Microsoft msxml3.0 v. msxml4.0
From: Mike Brown <mike@xxxxxxxx>
Date: Thu, 20 Jun 2002 21:26:54 -0600 (MDT)
Sean Hayes wrote:
> Can anyone figure out why $row1 does not evaluate to a nodeset?
> [...]
> <xsl:variable name="row1"><xsl:copy-of select="$items[position() &gt; 0 and position() &lt; 5]"/></xsl:variable>

<xsl:variable name="foo">
  ...
</xsl:variable>

always creates a result tree fragment.
In order to create any other type of object you use

  <xsl:variable name="foo" select="someXPathExpression"/>

Just get rid of the copy-of and move the select into the xsl:variable.

   - Mike
____________________________________________________________________________
  mike j. brown                   |  xml/xslt: http://skew.org/xml/
  denver/boulder, colorado, usa   |  resume: http://skew.org/~mike/resume/

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


Current Thread