<xsl:if test="price > 10">
In file xsl
How possibly add in test 2 condition use "or" ?
price > 10 or price <30 ?
Thank you!
Printable View
<xsl:if test="price > 10">
In file xsl
How possibly add in test 2 condition use "or" ?
price > 10 or price <30 ?
Thank you!
Apparently...
http://www.w3.org/TR/xpath#NT-OrExpr
Thank you!
:)