[Home] [By Thread] [By Date] [Recent Entries]
On 13.01.2011 19:51, russurquhart1@xxxxxxxxxxx wrote:
<xsl:apply-templates select="*[not(./bookinfo) or not(./title)]"/> You select all children that don't have a child named bookinfo together with all children that don't have a child named title. You want to select all children who are not either bookinfo or title:
<xsl:apply-templates select="*[not(self::bookinfo or self::title)]" />
|

Cart



