Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
how to use logical OR and logical AND in xslt in version 1.0
rathin
How to use logical OR and logical AND in xslt in version 1.0.
Also tell me if the following code is correct:
xsl:if test="node[
@Level
>= $NodeLevel]"
please rectify.Its not working.
Find more posts tagged with
Comments
Vip777
Try this.
<xsl:if test="($foo = 'bar') or ($bar = 'foo')">
<xsl:if test="($foo = 'bar') and ($bar = 'foo')">