Jump to content

Problem with .swf file


andreathedove

Recommended Posts

Because CDATA makes all of it's contents into Character DATA. That is, all special signs become their entitites. "<" becomes ">" and so on. Those signs are escaped in the output, rendering the text as "<". You can "disable-output-escaping" by adding that attribute with a value of "yes" to the value-of element, like so:

<xsl:value-of select="codice" disable-output-escaping="yes"/>

Link to comment
Share on other sites

Because CDATA makes all of it's contents into Character DATA. That is, all special signs become their entitites. "<" becomes ">" and so on. Those signs are escaped in the output, rendering the text as "<". You can "disable-output-escaping" by adding that attribute with a value of "yes" to the value-of element, like so:
<xsl:value-of select="codice" disable-output-escaping="yes"/>

thanksssssssssssssss youuuuuuuuuuu
Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...