Rondra: Eine Schleiefe in XSLT

Beitrag lesen

Hi,

schau mal ob Dir das hier weiterhilft..

<xsl:template match="/">
<html>
 <body>
  <xsl:for-each select="//menueCategory">
  <ul>
   xsl:apply-templates/
  </ul>
  </xsl:for-each>
 </body>
</html>
</xsl:template>
<xsl:template match="menueCategory">

<li><xsl:value-of select="."/></li>

</xsl:template>

lg
Rondra