Hi, I am in a delimma that I cannot seem to figure out. I will explain the setup here. I have an XSL stylesheet , XML database that is constantly updated with information typed in from a java based program, it is then displayed on a public webpage. Now what I have on my XSL file to display is:
<for-each select="stuff/stuff/stuff"> then
<value-of select="stuff"></value-of> then i have output escaping disabled.
what I need to do , is get the CDATA from the xml database that is displayed as <stuff>
<![CDATA[<font color="green">TEXTHERE</font>]]>
</stuff>
My delimma is im trying to specify what displays on the webpage from particular strings such as.
<for-each select="stuff/stuff/stuff[tab='tabname']"> THAT works just fine, but I need to display the values in CDATA and I cannot figure out what to write , also, if I can display certain CDATA values that I specify, how do I do multiple values
Thanks!!
<for-each select="stuff/stuff/stuff"> then
<value-of select="stuff"></value-of> then i have output escaping disabled.
what I need to do , is get the CDATA from the xml database that is displayed as <stuff>
<![CDATA[<font color="green">TEXTHERE</font>]]>
</stuff>
My delimma is im trying to specify what displays on the webpage from particular strings such as.
<for-each select="stuff/stuff/stuff[tab='tabname']"> THAT works just fine, but I need to display the values in CDATA and I cannot figure out what to write , also, if I can display certain CDATA values that I specify, how do I do multiple values
Thanks!!