In my XSLT I have:
Code:
<xsl:value-of select="Woof"/>
This outputs whatever the value of Woof is in my Dataset.
But lets say the "field" Woof cantains:
Code:
<IMG SRC="\Images\Fish.jpg"/>
Then what happens is the XSLT sheet acutally formats this to display the text "<IMG SRC="\Images\Fish.jpg"/>", instead of rendering the code as HTML and displaying the picture.
How do I stop the XSL sheet reformatting html code in field names?

Woof