hi
thanx a lot....it is easier, my solution used one more line.....
you 're great
thanx & regards
marco
> -----Original Message-----
> From: EXT Kay Michael [mailto:Michael.Kay@xxxxxxx]
> Sent: 21. January 2000 12:07
> To: 'xsl-list@xxxxxxxxxxxxxxxx'; stefano@xxxxxxxxxx;
> jarnose@xxxxxxxxxx
> Subject: RE: option list using XSL
>
>
> > 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
>
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|