Hi, I'm pulling data from an XML feed using the following: <xsl:for-each select="Results/ResultSet/AB"> <p><a href="{@URL}"><xsl:value-of select="@heading"/></a></p> <p><xsl:value-of select="@content"/></p> </xsl:for-each> Code (markup): The @heading element has <b> tags in it...problem is they are printed not translated to html. Would anyone be able to let me know how I can get <b> tags to be translated as html. Thanks biz
Thanks for your quick reply mad4 Figured it out the tag i needed was disable-output-escaping="yes" I've got alot to learn Cheers biz
Another quick one... For the anchor tag, how can i have the actual url printed & not the complete path..currently the element is linking to the file system c:\etc... even though the value of the @URL is www.domain.com