Subject: Re: XSLT - update attribute with new value
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 8 Nov 2004 15:25:31 GMT
|
> Now I have one final question. I want to add an attribute/value to the
> xml tree only if that attribute does not exist anywhere in the document
> source tree.
> Is there a way to do that in XSLT?
<xsl:if test="not(//@foo)">
<xsl:attribute name="foo">something</xsl:attribute>
</xsl:if>
David
________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________
|