Is this right for When 4 < 5 and 1 < 2 ?
<xsl:when test="4 < 5 AND 1 < 2" >
<!-- do something -->
</xsl:when>
|
Is this right for When 4 < 5 and 1 < 2 ?
|
|||
|
|
|
Not quite, the AND has to be lower-case.
|
|||
|
|
|
It does have to be wrapped in an <xsl:choose> since it's a when. And lowercase the "and".
|
|||
|
|
|
From XML.com:
|
|||
|
|
|
According to msdn you can do it: http://msdn.microsoft.com/en-us/library/ms256081%28VS.85%29.aspx Also somne other great resource about writing conditions: |
|||
|
|