markgravitygood
Programmer
Ok, Which is the correct way to handle this xsl:
<xsl:when test="CARRIER_REFERENCE[text()!='610442']">
Do Something
</xsl:when>
OR
<xsl:when test="CARRIER_REFERENCE[.!='610442']">
Do SOmething
</xsl:when>
I have seen it work one way or another, and need to know and understand what thye differences are between [text()= and [.=
TIA!
<xsl:when test="CARRIER_REFERENCE[text()!='610442']">
Do Something
</xsl:when>
OR
<xsl:when test="CARRIER_REFERENCE[.!='610442']">
Do SOmething
</xsl:when>
I have seen it work one way or another, and need to know and understand what thye differences are between [text()= and [.=
TIA!