Re: [xsl] value for href

Subject: Re: [xsl] value for href
From: Mike Brown <mike@xxxxxxxx>
Date: Thu, 18 Oct 2001 15:04:36 -0600 (MDT)
> <td bgcolor="lightsteelblue"><b>URL</b>:  <a href="<xsl:value-of 
> select='SiteURL'/>"><xsl:value-of select='SiteURL'/></a></td>

<a href="{SiteURL}">

or

<a>
  <xsl:attribute name="href">
    <xsl:value-of select="SiteURL"/>
  </xsl:attribute>
</a>

if you like typing.


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread