tektipsjunkie
Programmer
I know I can do this::
<xsl:if test="mserson/ms:Name/@ms:first">
<xsl:if test="mserson/ms:Name/@ms:last">
</xsl:if>
</xsl:if>
BUT I would like to do this::
<xsl:if test="mserson/ms:Name/@ms:first" or test="mserson/ms:Name/@ms:last">
Is there a way to user and/or operators
<xsl:if test="mserson/ms:Name/@ms:first">
<xsl:if test="mserson/ms:Name/@ms:last">
</xsl:if>
</xsl:if>
BUT I would like to do this::
<xsl:if test="mserson/ms:Name/@ms:first" or test="mserson/ms:Name/@ms:last">
Is there a way to user and/or operators