Does anyone know how do I render html tags in the xml file for extension data? Im showing "<br>" in an extension field when it should actually line break.
Does anyone know how do I render html tags in the xml file for extension data? Im showing "<br>" in an extension field when it should actually line break.
Are you rendering this to a page using an xmlpackage? Did you make sure to add disable-output-escaping="yes" as an attribute to the line that you are using to pull the extension data...e.g.Code:<xsl:value-of select="ExtensionData" disable-output-escaping="yes"/>
<a href="http://www.aspdotnetstorefront.com">Shopping Cart Software</a>
Perfect, I had disable-output-escaping="yes" in the wrong field.