loop over attributes in xsl

Hello,

Is there a way I can go over all the attributes of an element?

My code for the xsl file is that:

<?xml version="1.0"?>

<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl"
xmlns:z="#RowsetSchema">
	
	<xsl:template match="/">
			<titles>
			<xsl:for-each select="//z:row"
order-by="number(@I_ENTRY_ID)" direction="-">
				<xsl:element>
			<xsl:for-each select="//z:row[attribute(@)]">
		<xsl:attribute name="I_NEW_ITEM">g</xsl:attribute>
			</xsl:for-each>	
				</xsl:element>
			</xsl:for-each>
				</titles>
	</xsl:template>

</xsl:stylesheet>

could you come back to me as soon as possible

thank you very much

Gilad 

Gbarlev@ifn.co.il

Received on Wednesday, 4 October 2000 07:41:29 UTC