This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: value for href


> <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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]