xsl-list
[Top] [All Lists]

Re: Select statement within HREF

2003-10-31 04:38:10
Hi Sajjad,

I want to use a select statement within anchor hyper ref[=a href].

Example:
<a href="(<xsl:value-of select="@name/>)/(file.xml)">"><xsl:value-of
select="@name"/></a>

That wouldn't be well-formed XML, and stylesheets have to be
well-formed XML. You need an attribute value template:

  <a href="{(_at_)name}/file.xml">
    <xsl:value-of select="@name" />
  </a>

In attribute values on literal result elements (like the <a> element,
not on XSLT instructions like the <xsl:value-of> element), anything
within {}s is interpreted as an XPath expression and the result of
evaluating that expression is inserted into the attribute value.
  
Cheers,

Jeni

---
Jeni Tennison
http://www.jenitennison.com/


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



<Prev in Thread] Current Thread [Next in Thread>