Created
August 4, 2011 12:53
Multiple conditions test in xsl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<xsl:choose> | |
<xsl:when test="$var1='value1' or $var2='value2" or $var3='value3'"> | |
<!-- blah blah --> | |
</xsl:when> | |
</xsl:choose> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment