Instead of:
Code:
<xsl:value-of select="adres"/>
try
Code:
<xsl:apply-templates select="adres"/>
and add a template:
Code:
<xsl:template match="adres">
<xsl:value-of select="."/>
<xsl:if test="position() != last()">, </xs:if>
</xsl:template>
Your code would work in version 2.0 where value-of returns a space separated list rather than just the first matching node.
--
Joe (
Microsoft MVP - XML)