Hi everybody,
i got following result:
10000
10001
1
10000
I want to have:
10000
10001
1
I don't want to get doublets.
Does anybody know something about it?
Thanks in advance and best regards
Sven
my xsl:
----------------------------------
<xsl:template match="pc">
<xsl:for-each select="error-id">
<fo:block>
<xsl:value-of select="@name"/>
</fo:block>
</xsl:for-each>
</xsl:template>
---------------------------------
my xml:
---------------------------------
<tc>
<pc>
<error-id id="1" name="10000" />
<error-id id="2" name="10001"/>
</pc>
<pc>
<error-id id="3" name="1" />
<error-id id="1" name="10000"/>
</pc>
</tc>
--~------------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--