xsl decoding my xml
i dont want the xslt to decode xml like chngeing html sequence and other things is there any thing i can add to the template to seect it words as it is like
select="node() some code"
开发者_如何学Gothank you,
You want to use the disable-output-escaping option:
<xsl:value-of select="node()" disable-output-escaping="yes" />
精彩评论