xsl-list
[Top] [All Lists]

Re: string matching problem

2003-05-20 06:09:28
asim wrote:
|| AOA All
||  here is a sample condition
|| <xsl:if test="TValue = 'True'">
||  then html
|| </xsl:if>
|| 

hi you can try try something like 
<xsl:variable name="before" select="TRUE"/>
<xsl:variable name="after" select="'true'"/>

<xsl:if test="translate(TValue,$before,$after)='true'">


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



<Prev in Thread] Current Thread [Next in Thread>