using cdata for links in xml

wxdqz

New Member
i am trying to make links in the "used" nob, but when I use cdata against them they come out as text instead of html code. Any thoughts on how to get these to be links?

Thanks.



xml code:

<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- Edited with XML Spy v2006 (<!-- m --><a class="postlink" href="http://www.altova.com">http://www.altova.com</a><!-- m -->) -->
<?xml-stylesheet type="text/xsl" href=http://www.webdeveloper.com/forum/archive/index.php/"simple.xsl" ?>
<menu>

<ingredient>
<name>10-Hydroxydecanoic Acid</name>
<link>treatment_scalp</link>
<description>An exfolient that dissipates and regulates the elimination of dead scalp cells while helping to control the amount of sebum on the skin.</description>
<used><![CDATA[<a href="link.html">link1</a>, <a href="link2.html">link2</a>]]></used>
</ingredient>

<ingredient>
<name>10-Hydroxydecanoic Acid</name>
<link>treatment_scalp</link>
<description>An exfolient that dissipates and regulates the elimination of dead scalp cells while helping to control the amount of sebum on the skin.</description>
<used><![CDATA[<a href="link.html">link1</a>, <a href="link2.html">link2</a>]]></used>
</ingredient>
</menu>




xls code:

<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- Edited with XML Spy v2006 (<!-- m --><a class="postlink" href="http://www.altova.com">http://www.altova.com</a><!-- m -->) -->
<html xsl:version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml">
<body style="color:#666666; line-height: 1.5; font-family: verdana, sans-serif; font-size: 10px;
background-color:#EEEEEE">
<xsl:for-each select="menu/ingredient">
<div style="background-color:white;color:black;padding:4px">
<span style="font-weight:bold;color:black">
<xsl:value-of select="name"/></span>
<br></br>


</div>
<div style="margin-left:20px;margin-bottom:1em;font-size:10pt line-height: 1.5; font-family: verdana, sans-serif; font-size: 10px;">
<xsl:value-of select="description"/>
<br></br>
<span style="font-style:italic; line-height: 1.5; font-family: verdana, sans-serif; font-size: 10px;">
<xsl:value-of select="used"/>
</span>
</div>
</xsl:for-each>
</body>
</html>
 
Back
Top