hi I am doing the following
<xsl:variable name ="att" select = "//@partid" />
i.e. selecting all attributes having 'partid' name. what I want to do is that this partid is variable. i.e. something that can change. i.e.
<xsl:variable name ="att" select = "//@XXXX" />
where XXXX is a variable....
how to do this...[i.e. I don't want to fix the attribute name to partid...but want it to be a variable]
<xsl:variable name ="att" select = "//@partid" />
i.e. selecting all attributes having 'partid' name. what I want to do is that this partid is variable. i.e. something that can change. i.e.
<xsl:variable name ="att" select = "//@XXXX" />
where XXXX is a variable....
how to do this...[i.e. I don't want to fix the attribute name to partid...but want it to be a variable]