|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: Values in attributes
> -----Original Message----- > From: Francisco de Asis Franco Eslava > > 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> > Hi, try : <xsl:variable name="city" select="city/name/text()" /> <a href="cities.php?city={$city}"><xsl:value-of select="$city" /></a> Hope this helps! Cheers, Andreas 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
|






