So I need to get the values of all the attributes, but i dont want to pass the name of each attribute because the name keeps changing based on some logic.
Is there a way to get the attribute count and based on that i iterate through, may be, a list and get the names?
Subject: XML attribute name Author:(Deleted User) Date:10 Nov 2008 09:44 AM
Usin XSL, you can iterate over all the attributes by using <xsl:for-each select="/root/item/@*">, and later check on the value returned by the name() function.