The <xsl:choose> is parent of the <xsl:when> these element are tested, in order from
top to bottom, until a test attribute on one of these elements accurately
describes conditions in the source data, or until an <xsl:otherwise> element is
found. Once an <xsl:when> or <xsl:otherwise> element is chosen, the <xsl:choose>
block is exit. No explicit break or exit statement is required.
For simple conditional testing, use the <xsl:if> element.
|