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: Creating IMG tags using MSXML


-----Original Message-----
From: Duane Nickull <duane@xmlglobal.com>
To: xsl-list@mulberrytech.com <xsl-list@mulberrytech.com>
Date: Friday, March 03, 2000 6:24 PM
Subject: RE: Creating IMG tags using MSXML


> <IMG SRC="{@PlanLogo}" BORDER="0"/>

>Very close however you have basically told the browser that the image
source
>value is '{@PlanLogo}' which does not actually correspond to the value of
>the attribute from the XML input tree.  To reference the node value you
want
>to insert, try something like this:
>
><xsl:element name="IMG">
>  <xsl:attribute name="SRC">
>    <xsl:value-of select="{@PlanLogo}"/>
>  </xsl:attribute>
>  <xsl:attribute name="BORDER">0</xsl:attribute>
></xsl:element>

You can also do this.

<img>
  <xsl:attribute name="SRC">
    <xsl:value-of select="{@PlanLogo}"/>
  </xsl:attribute>
  <xsl:attribute name="BORDER">0</xsl:attribute>
</img>



 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]