Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Re: using xsl:value-of inside of img tag

From: =?ISO-8859-1?Q?Christian_Fr=F6schlin?= <froeschlin@-----.--->
To: NULL
Date: 8/3/2004 6:50:00 PM
Tim Collinson wrote:
> This is probably a simple thing but I can't seem to find the answer for it
> anywhere. I have an .xml file with a tag somewhat like the one below:
> 
> <article_pic>www.somewhere.com/pic.jpg</article_pic>
> 
> I then have an .xsl file I am building to display the data in the .xml file.
> In the .xsl file I have a line something like this:
> 
> <img src ="<xsl:value-of select="home/main_article/article_pic" />" align
> ="left" />

Try using an attribute value template:

<img src ="{home/main_article/article_pic}" align="left" />

A more generic approach is something like

<xsl:element name="img">
   <xsl:attribute name="src">
     <xsl:value-of select="home/main_article/article_pic"/>
   </xsl:attribute>
</xsl:element>

(untested)




transparent
Print
Mail
Like It
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent