Re: trouble creating a link

Subject: Re: trouble creating a link
From: "Wayne Davis" <quietman@xxxxxxxx>
Date: Fri, 2 Jun 2000 19:25:01 -0700
Dan... thanks for the pointer.
Here's what works...(also posting the code I'm using to create a web based
link, in the event that someone else finds it useful - _someone_ else out
there must be as green as I am with this stuff <g>)

If anyone wants to see the full XSL & XML, just ask.

Cheers,
Wayne Davis

*************************************************

 <xsl:if test="EMAIL[.!='']">
 <a>
    <xsl:attribute name="href">mailto:<xsl:value-of select="EMAIL"/>
    </xsl:attribute>
    <li><font face="Arial" size="2" color="aqua">
    <xsl:value-of select="EMAIL"/></font></li>
 </a>
 </xsl:if>

 <xsl:if test="WEB[.!='']">
 <a>
    <xsl:attribute name="href">http://<xsl:value-of select="WEB"/>
    </xsl:attribute>
    <xsl:attribute name="target">_blank</xsl:attribute>
    <li><font face="Arial" size="2" color="white">
    <xsl:value-of select="WEB"/></font></li>
 </a>
 </xsl:if>


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


Current Thread