|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Select statement within HREF
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="{@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
|
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
|






