> -----Original Message-----
> From: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx [mailto:owner-xsl-
> list@xxxxxxxxxxxxxxxxxxxxxx] On Behalf Of Francisco de Asis Franco
Eslava
> Sent: 28 December 2003 15:46
> To: XSL-List@xxxxxxxxxxxxxxxxxxxxxx
> Subject: 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
|