How 2 output tags att with XSL

浜田 伸一郎 shinichiro.hamada at toshiba.co.jp
Wed Jan 13 04:46:11 GMT 1999


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 at ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/
To (un)subscribe, mailto:majordomo at ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo at ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa at ic.ac.uk)




More information about the Xml-dev mailing list