Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
rendering xml with xsl
bobatsubaru
i'm trying to render a file deployed in xml format with xsl. The xml contains html tags (<ul> and <li>), but the tags are not being displayed correctly in the IE browser. How do I fix this?
Thanks.
Find more posts tagged with
Comments
Gregg Faus
Why don't you attach the xsl or post a piece of code? It could be a number of things.
If your XML contains HTML I'd also suggest you put that into CDATA tags (if not already).
bobatsubaru
Thanks for your reply. Attached are the xml and xsl files.
Gregg Faus
When trying to output the answer node, disable the output escaping by doing this:
<xsl:value-of select="answer" disable-output-escaping="yes"/>
That will output your HTML contained in your CDATA tag.
bobatsubaru
That was it. Thanks.