xsl-list
[Top] [All Lists]

Comparing nodes in XPath

2005-01-21 11:42:12
Why is this xpath NOT working

<xsl:value-of 
select="document('connections.xml')/connections/connection[(_at_)id=Conn]"/>

 and this IS

<xsl:variable name="conn" select="Conn"/>
<xsl:value-of 
select="document('connections.xml')/connections/connection[(_at_)id=$conn]"/>

I can think that the first is comparing a attribute to a node so it
allways returns a node set(0)?

And the second is comparing a attribute with a string?

I also tryed using text(Conn), Conn/text() and some others, but none work,


This is probably a basic question, maybe it's getting late for me...

--~------------------------------------------------------------------
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>
--~--



<Prev in Thread] Current Thread [Next in Thread>