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: 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


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