xsl-list
[Top] [All Lists]

RE: Values in attributes

2003-12-28 09:05:07

-----Original Message-----
From: owner-xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com 
[mailto:owner-xsl-
list(_at_)lists(_dot_)mulberrytech(_dot_)com] On Behalf Of Francisco de Asis 
Franco
Eslava
Sent: 28 December 2003 15:46
To: XSL-List(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: [xsl] Values in attributes

I want to put an <xsl:value-of> in an html attribute, but it is
impossible
because the xml will not be well formed. Is there any way to do this?

For example, with this piece of xml code:

<city>
 <name>Sevilla</name>
</city>

generate this outputs in HTML:

<a href="cities.php?city=Sevilla">Sevilla</a>


[Jim Fuller] Use this in your xslt
<a href="cities.php?city={city/name}">

notice the curly brackets which is avt 

read up here
http://www.dpawson.co.uk/xsl/sect2/N1575.html

gl, Jim Fuller


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



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