Subject: Re: xpath and variables
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 10 Jun 2003 17:44:13 +0100
|
> <xsl:variable name="path" select="//level1/level2" />
path is not an expression type in xpath, you can not store unevaluated
expressions in a variable (no more than you can in most other
programming languages) so that variable stores the node set resulting
from evaluating that path at the current node.
> <xsl:value-of select="$docdataXML/$path"/>
As the value of $path is a constant, this is the same as
<xsl:value-of select="$path"/>
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
|