|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: Using a URL in a XSL doc
> I am a new xsl developer, I wander if anyone out there can
> help with my simple problem.
>
> <A href= <xsl:apply-templates select="article_url"/> >
>
A stylesheet must be well-formed XML, so you can't use instructions inside
an attribute.
You want
<A>
<xsl:attribute name="href">
<xsl:apply-templates select="article_url"/>
</xsl:attribute>
Or in your case I don't think you actually need apply-templates, you could
write
<A href="{article_url}">
This thing is called an attribute value template; the thing inside the curly
braces is an XPath expression which is evaluated as a string.
Mike Kay
Software AG
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








