I'm passing an XSLT stylesheet the name of an element I want it to retrieve, but I have a problem. Here's the code I'm using at the moment to retrieve that element:
<xsl:value-of select="$toget" />
Which obviously doesn't work: It just returns whatever I passed it!
Is there anyway to do this short of <xsl:when><xsl:choose>?
<xsl:value-of select="$toget" />
Which obviously doesn't work: It just returns whatever I passed it!
Is there anyway to do this short of <xsl:when><xsl:choose>?
Comment