<map:entry codeA="90434" codeB="9801" codeC="0121" />
<xsl:value-of
select="$lookupTable/map:table/map:entry[(_at_)codeA=$valueOfCodeA]" />
That xsl:value-of gets the string value of the map:entry, which is an
empty element so it selects nothing.
You probably want to select one of the attributes, eg add "/@codeB" on
the end of it:
$lookupTable/map:table/map:entry[(_at_)codeA=$valueOfCodeA]/@codeB
--
Andrew Welch
http://andrewjwelch.com
Kernow: http://kernowforsaxon.sf.net/
--~------------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--