Re: [xsl] Inline Hyperlink

Subject: Re: [xsl] Inline Hyperlink
From: David Carlisle <davidc@xxxxxxxxx>
Date: Sat, 26 Apr 2003 17:53:27 +0100

> Just when I am beginning to have a comfort level in xml/xslt, another issue
> appears. My inline hyperlink code is returning the following text in my
> browser, instead of an active link:

If you want a link you need an a element not the characters < a ... >

>     <xsl:template match="n1:TextHyperLink">
>         &lt;a href=<xsl:for-each select="n1:hlAddress">

That's making the characters < a not an a element.
To make an a element yo want a literal result element
<a>
not &lt;a.

David


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


Current Thread