i have a problem like a lot of people with escaping the > sign. the data xml file looks like
<XML>
<check><![CDATA[value > 60]]></check>
</Xml>
with xslt i would like to create a c# function. the checks are items that gone be used in a if statement.
public void product(int value)
{
if( <xsl:value-of disable-output-escaping="yes" select="actie" />)
this should be: if( value > 60 ) but returns if( value > 60 )
}
<xsl:value-of cdata-section-elements="check"/>
can't be used becouse i can't use this data in a template.
disable-output-escaping just returns >
hope one of u have a working solution.
thanking you in advance