> From: Marco.Mistroni@xxxxxxxxx [mailto:Marco.Mistroni@xxxxxxxxx]
> Subject: option list using XSL
>
> i have an xml file like this
> <animal name="lion"/>
> <animal name="panda"/>
> <animal name="dog"/>
> <animal name="cat" />
> from this, i should generate an option list
> ideally the result should be like this:
> <select name="zoo">
> <option value="lion">lion</option>
> ...
try :
<xsl:template match="animal">
<option>
<xsl:attribute name="value">
<xsl:value-of select="@name"/>
</xsl:attribute>
<xsl:value-of select="@name"/>
</option>
</xsl:template>
Regards, Juliane.
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|