This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: multiple if and expression


thomas wrote:

Im struggling with the multiple if expression.
<xsl:if test="not(@da = '') 'and' not(@dada = '') 'and' not(@dadada = '')">
proceed
</xsl:if>
Be simple:
<xsl:if test="not(@da = '') and not(@dada = '') and not(@dadada = '')">

--
Oleg Tkachenko
Multiconn International, Israel


XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]