Subject: RE: option list using XSL
From: Kay Michael <Michael.Kay@xxxxxxx>
Date: Fri, 21 Jan 2000 10:07:06 -0000
|
> i have an xml file like this
>
> <animal name="lion"/>
>
> from this, i should generate
> <option value="lion">lion</option>
>
> <xsl:template match="animal/@name">
> <option>
> <xsl:attribute name="value"/><xsl:value-of select=".">
> <xsl:value-of select="."/>
> </option>
>
You want
<xsl:template match="animal">
<option value="{@name}"><xsl:value-of select="@name"/></option>
</xsl:template>
Mike Kay
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|