hi!
 
> I do <xsl:apply-templates/> but I don't want apply templates for all
> <hidden> nodes and subnodes. What I should put in parameter
> <xsl:apply-templates/>?
In root you can select tag1.
www.zvon.org has nice tutorials. You might probably want to go through them.
 
<!-- XML File -->
<root>
<tag1>....</tag1>
<hidden>
    <hidTag1>....</hidTag1>

    <hidTag2>....</hidTag2>

    <tag2>....</tag2>
</hidden>
<root>
<!-- End XML-->
 
<!-- XSL file -->
 
<xsl:template match="root">
    <xsl:apply-templates select="tag1"/>
</xsl:apply-templates>
 
<!-- XSL File -->
 
HTH,
karthik
 
 

 

Reply via email to