Subject: Re: How to create active hyperlinks from xml file
From: "Gene Lake" <sixty9th@xxxxxxxxxxx>
Date: Mon, 17 Jul 2000 13:44:16 GMT
|
<?xml version="1.0" ?>
<?xml:stylesheet type="text/xsl" href="favourites.xsl"?>
<favourites>
<url>www.iol.ie></url>
<url>www.deafblind.com></url>
<url>www.download.com></url>
</favourites>
If u using MSXML only this script could help:
<xsl:element name="A">
<xsl:attribute name="HREF"><xsl:value-of select="url"/></xsl:attribute>
<xsl:value-of select="url"/>
</xsl:element>
In theory the following should work:
<a href="{url}><xsl:value-of select="{url}"/></a>
Good luck
G.L.
________________________________________________________________________
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|