xsl-list
[Top] [All Lists]

Re: [xsl] XSLT2 processing question

2006-05-23 10:51:15
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.

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>