Subject: Re: forming a link w/ arguments?
From: Michael <mogmios@xxxxxxxxxxxxxxxxx>
Date: Tue, 13 Nov 2001 16:49:35 -0600 (CST)
|
Thanks for everyones help.. built from your examples this is what I
finally got that works.. recorded here for future reference..
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="LINK">
<a>
<xsl:attribute name="href">
<xsl:value-of select="BASE" />?<xsl:text /> <xsl:for-each select="ARG">
<xsl:value-of select="@NAME" />=<xsl:value-of select="@VALUE" />&</xsl:for-$</xsl:attribute>
<xsl:value-of select="TEXT" />
</a>
</xsl:template>
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|