Hi I am looking for help with an xsl transform of an xml file. The problem is with <xsl:with-param>.
The following is what I have:
<xsl:param name="paramTest">$LINKNUM$</xsl:param>
<key name="$LINKNUM$">SELECT count(1) from applications</key>
<xsl:choose>
<xsl:when test="$paramTest = '0' ">
do this........
</xsl:when>
<xsl:otherwise>
do this.........
</xsl:otherwise>
</xsl:choose>
This select count returns 0 which is what I want but it never actually goes into the xsl:when part, it always falls into xsl:otherwise. Don't worry about the order of the tags etc I've just cut them out of the file