Hi,
Code:
<field>
<fieldId>PlanName</fieldId>
<fieldtext>Name of Plan</fieldtext>
<fieldvalue>Battle Plan</fieldvalue>
<fieldvalue2><b>BATTLE PLAN<b></fieldvalue2>
<type>NormalField</type>
<sequence>2</sequence>
<stylemarker>1</stylemarker>
</field>
I could select fieldvalue by:
Code:
<td><xsl:value-of select="field/fieldvalue"/><td>
This would be interpreted as: Battle Plan
But what if I want to select fieldvalue2 and interpret it as html?
I want it be like:
BATTLE PLAN
I don't want it to be displayed as: <b>BATTLE PLAN</b>
In short, I want to insert the contents and interpret it as html.
Is it possible?
Thank you very much.