Looping through all attributes of a XML element in XSLT
- by TheGNUGuy
Hey everyone,
I am trying to use <xsl:for-each select="@*"> to grab all the attributes of a given element but when i do that my <xsl:choose> statement doesn't execute.
Here is the element that I'm working with:
<textBox id="Airfare" value="" label="text 1"/>
Here is the XSLT template I'm using:
<xsl:template…