freekir
3/12/2015 - 9:12 PM

If, choose

If, choose

<xsl:if test="expression">
  ...some output if the expression is true...
</xsl:if>
<xsl:choose>
	<xsl:when test="???">
		111
	</xsl:when>
	<xsl:otherwise>
		222
	</xsl:otherwise>
</xsl:choose>