Re: [xsl] Displaying element value in browser, which is inside CDATA in XML

Subject: Re: [xsl] Displaying element value in browser, which is inside CDATA in XML
From: Martin Honnen <Martin.Honnen@xxxxxx>
Date: Mon, 18 Jul 2011 13:50:50 +0200
Ramkumar V wrote:

I want to display anchor element attribute value in browser, but it is in
CDATA.

Please suggest anyone how to display this value?


<bk:text><![CDATA[Psychologists acknowledge that, as in the heroism of Sully
Sullenberger, sometimes an individual&#8217;s best moments emerge<a
class="page_break" name="page7"></a>  amid the most difficult
circumstances.]]></bk:text>

<xsl:template match="bk:text">
<xsl:value-of select="." disable-output-escaping="yes"/>
</xsl:template>
would output the contents of the 'bk:text' element and if the XSLT processor supports disable-output-escaping that would result in a text node plus an 'a' element plus a text node in the result.


Does that help? Or what exactly do you want to output, your subject says "element value", your text "element attribute value".




--


	Martin Honnen --- MVP Data Platform Development
	http://msmvps.com/blogs/martin_honnen/

Current Thread