Jean-François El Fouly a écrit :
Steffanina, Jeff a écrit :
Located in the XML file: <send-fax>Y</send-fax>
Recently, in a reasonably similar problem (though a bit more complicated) I used
<xsl:if test="count(send-fax) = 0">

Not very elegant but it did the trick for me, and it might do for you if the only thing you need is test the existence of send-fax.

And BTW if send-fax is not a direct child of the node you're processing but a remote descendant, you should write my condition with an axe:
<xsl:if test="count(//send-fax) = 0">


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to