[
Lists Home |
Date Index |
Thread Index
]
- From: "
浜田 伸一郎
" <shinichiro.hamada@toshiba.co.jp>
- To: "ML XMLDev" <xml-dev@ic.ac.uk>
- Date: Wed, 13 Jan 1999 13:44:43 +0900
Hello.
I am studying XML and XSL with IE5. And I wrote a simple sample with them
like as following.
** xml file **
<items>
<item>
<param>hoge1</param>
<picture>hoge1.gif</picture>
</item>
<item>
<param>hoge2/param>
<picture>hoge2.gif</picture>
</item>
</items>
** xsl file **
<table>
<xsl:for-each select="items/item">
<tr>
<td>
<xsl:value-of select="param"/>
</td>
<td>
<img src=""/>
</td>
</tr>
<xsl:for-each/>
</table>
above xsl file is written for convert input xml file to a table structure,
but i have no idea to embed given image filename from xml into the "src"
attribute's value of "image" tag.
If anyone knows how to do, please give me any advice.
Thank you in advance.
--
Shinichiro HAMADA
xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/
To (un)subscribe, mailto:majordomo@ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo@ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa@ic.ac.uk)
|