I'm reading a list of records from a database and some include HTML as follows:
Name: Ben
Content: <p>Ben is having trouble.</p>
When I get a DataSet of this and Write it to XML, it is as follows:
<Name>Ben</Name>
<Content>
<p>Ben is having troubple</p>
</Content>
And so when I transform it with xsl onto the HTML page, it's displayed as follows:
Ben
<p>Ben is having trouble</p>
Obviously I want the HTML to display as HTML so it looks like this:
Ben
Ben is having trouble.
How can I do this??? Thanks for your help!