Re: [xsl] Hi everbody

Subject: Re: [xsl] Hi everbody
From: Joerg Heinicke <joerg.heinicke@xxxxxx>
Date: Fri, 10 Jan 2003 08:59:20 +0100
Hello,

welcome to the list.

Sai, Mukundan (IE10) wrote:
Hi ,
I have a problem ..
I have an xml document say "test.xml" & a xsl say "compare.xsl"
in the xsl i have to do some error checkin .. ie i have to check whether all
the attribute r present or not that i am ale to do usin <xsl:if test="not[@attibute]" >

<xsl:if test="@attribute"/> or <xsl:if test="not(@attribute)"/>


 ...i also want to check if a node exists  for ex :
 <node>
 <childnode> ..<childnode>
<node>
>
how do i check if the child node "childnode" exists or not ....

even simpler:


<xsl:if test="childnode"/> or <xsl:if test="not(childnode)"/>

This works, because the child:: axis is the default one. So in the extended version it's <xsl:if test="child::childnode"/>. The context node must of course be <node/>, because it has <childnode/> as child.

Regards,

Joerg

 waiting for u solution ..
thnx in advance  ..
Sai Mukund


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


Current Thread