Przemek Urbanski wrote:
<xsl:variable name="tmp_var">server1</xsl:variable>
<xsl:for-each select="$tmp_var">
You can use
<xsl:for-each select="*[local-name() = $tmp_var]">
if tmp_var contains the local name of an element.
--
Martin Honnen
http://JavaScript.FAQTs.com/
--~------------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--