<students>
<student>
<name>John</name>
<ID>1342</ID>
<course>MATH</course>
</student>
<student>
<name>Marry</name>
<ID>1526</ID>
</student>
</students>
And I want to display a text if course tag does not exists.
How can I do
this?
<xsl:if test="not(course)">a text</xsl:if>
when the current node is a student element.
Cheers,
Jarno - Madam Zu: August 2003 Part 1