> De : Zahidul Islam [mailto:[EMAIL PROTECTED]

> <xsl:templates match="item_details">
> <xsl:apply-templates select="attributes"/>
> </xsl:templates>
> <xsl:templates match="attributes">
> <xsl:apply-templates/>
> </xsl:templates>

If you use 

  <xsl:template match="attributes">
    <xsl:for-each select="*">
      <xsl:value-of select="name()"/>
      <xsl:text>: </xsl:text>
      <xsl:apply-templates/>
    </xsl:for-each>
  </xsl:template>

that should work better.

Cheers,
Dave.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to