Re: [xsl] XSLT2 processing question

Subject: Re: [xsl] XSLT2 processing question
From: "Jagdishwar B" <jagdishwar.beemanati@xxxxxxxxx>
Date: Tue, 23 May 2006 19:50:54 +0200
the <xsl:apply-templates/> you included under <xsl:template match="/">
will match <idnr> and <info> also, so you are getting the value of
those in your output.
if you donot want to output the values <idnr> and <info>,
just add a template
	<xsl:template match="info|idnr"/>
it says when info and idnr are matched, just dont output anything.

--

Jagdishwar B.

Current Thread