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]

RE: html attributes


Here's an example from an XSL sheet I'm using. It pulls several variables
from the XML file.

<xsl:element name="image">
<xsl:attribute name="src">/images/<xsl:value-of
select="lang_root"/>/company/main.gif</xsl:attribute>
<xsl:attribute name="width">570</xsl:attribute>
<xsl:attribute name="height">115</xsl:attribute>
<xsl:attribute name="border">0</xsl:attribute>
<xsl:attribute name="alt"><xsl:value-of
select="about_us_image_tagline"/></xsl:attribute>
<xsl:attribute name="title"><xsl:value-of
select="about_us_image_tagline"/></xsl:attribute>
</xsl:element>

-----Original Message-----
From: Kevin_Gutch@mapinfo.com [mailto:Kevin_Gutch@mapinfo.com]

Does anyone have an example of inserting an <xsl:value-of select
="//myValue">  into an HTML attribute.

For instance, I want to populate an image SRC tag with an  <xsl:value-of
select="//myValue">. I can do this but I then want to populate the ALT
attribute with a value from the same XML.

 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]