Subject: Re: 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() > 0 and position() < 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
|