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: trouble creating a link


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

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