Sam wrote: > <xsl:for-each select="sql:rowset/sql:row/sql:uri"> > <xsl:apply-templates select="sql:uri"/> > </xsl:for-each>
This is the same as: <xsl:apply-templates select="sql:rowset/sql:row/sql:uri/sql:uri"/> What you need is: <xsl:apply-templates select="sql:rowset/sql:row/sql:uri"/> You don't need the <xsl:for-each/> then. Askild - --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
