Subject: RE: PLEASE HELP: changing href attribute
From: Kay Michael <Michael.Kay@xxxxxxx>
Date: Thu, 13 Jul 2000 16:16:35 +0100
|
> I would like to change the value (.html instead of .xml) of the href
> attribute in the following well-formed HTML:
> <xsl:template match="@href">
...
> href="<xsl:value-of select='$htmlUrl'/>"
> </xsl:template>
Change this to
<xsl:template match="@href">
...
<xsl:attribute name="href"><xsl:value-of
select='$htmlUrl'/></xsl:attribute>
</xsl:template>
Mike Kay
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|