May 22, 2001 #1 Mike42 Programmer Feb 22, 2001 10 DE I try to write a xsl template with a match expression like Code: <xsl:template match="node[@att1='v1'] and node[@att2='v2']" /> But this won't work. Is there an equivalent notation ? I am using MSXML 3.0 SP1.
I try to write a xsl template with a match expression like Code: <xsl:template match="node[@att1='v1'] and node[@att2='v2']" /> But this won't work. Is there an equivalent notation ? I am using MSXML 3.0 SP1.
May 23, 2001 #2 tokoh Programmer May 23, 2001 13 AU You could do something like this; <xsl:if test="node[@att1='v1']"> <xsl:if test="node[@att2='v2']"> </xsl:if> </xsl:if> Upvote 0 Downvote
You could do something like this; <xsl:if test="node[@att1='v1']"> <xsl:if test="node[@att2='v2']"> </xsl:if> </xsl:if>