I am just trying to make one xsl file. But it fails at
line : <xsl:copy-of select="$local/$elemName"/>
It says TestNode expected here....
Can't I combine two variables ???
Variables hold values, not parts of an expression. The thing after "/"
must be an expression that returns a nodeset, not a variable that holds
a string that you want to interpret as an expression that returns a
node-set.
Use $local/*[name()=$elemName]
Michael Kay
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list