Hi all,
I need to do a "not equal to" test within my XSLT file. Basically I am pulling fields from a database and showing them in the HTML output like this:
<xsl:value-of select="TM_PROJECT.TITLE"/>
Just as an example, I want to a test to find out whether the value of TM_PROJECT.TITLE is empty so i would think this would work:
<xsl:if test="'TM_PROJECT.TITLE'!=''"> No value </xsl:if>
It doesn't!! But then i'm a beginner so...that's quite normal. Can someone please point out how to do this?? Thanks!
Divinyl
I need to do a "not equal to" test within my XSLT file. Basically I am pulling fields from a database and showing them in the HTML output like this:
<xsl:value-of select="TM_PROJECT.TITLE"/>
Just as an example, I want to a test to find out whether the value of TM_PROJECT.TITLE is empty so i would think this would work:
<xsl:if test="'TM_PROJECT.TITLE'!=''"> No value </xsl:if>
It doesn't!! But then i'm a beginner so...that's quite normal. Can someone please point out how to do this?? Thanks!
Divinyl