Looping through Attributes in XSLT (Help Russell Jones)

wxdqz

New Member
I'm looking for any information on how to loop through a list of attributesin XSLT. For example, the following code should retrieve a node list ofattributes for an element:<xsl:for-each select="ROW[@*]"><!-- Process attribute --></xsl:for-each>Once you retrieve the node list, what's the syntax for manipulating thatlist, meaning what's the syntax for retrieving the current node in the listduring the loop. I won't know the names of the attributes during transformation,and the number of attributes can vary. Any help would be greatly appreciated.Jay
 
Back
Top