Unlocking the Mysteries of Data View Web Part XSL Tags – Part 10 – <xsl:choose>
Cross-posted from EndUserSharePoint.com… <xsl:choose> Like <xsl:if>, but with multiple possibilities, more like if-then-else. <xsl:when> Used within <xsl:choose> as a conditional test. If the test is true, then the contained code is executed and the <xsl:choose> is exited. <xsl:otherwise> Used within <xsl:choose> as the “fall-back” condition. If none of the prior <xsl:when>s have been executed, the…