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]
Other format: [Raw text]

Re: Simple Question newie


> <xsl:value-of select="{.}"/>

xsl:value-of takes an XPath expression. Xpath _never_ uses  {} syntax, that is
just used in certain "attribute value template" attributes in XSLT to
sneak in an Xpath into an attribute that would otherwise be a string.
So that should just be <xsl:value-of select="."/>
Note however you don't need to use xsl:attribute and xsl:value of here
you can use the {] syntax to evaluate . directly as an attribute of
the <A> element so
<xsl:template match="anId">
		<A HREF="{.}">>Click Here</A>
</xsl:template>

Finally note that as the world moves towards XHTML you'll need to stop
using uppercase names. The above would be correct as HTML but if you ever
decide to upgrade to xhtml you'll need

<xsl:template match="anId">
		<a href="{.}">>Click Here</a>
</xsl:template>


David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

 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]