thanx juliane,
i had the same idea after sending the msg....
unfortunately i cannot test it 'cause my pc went down...and now i am with
no wkstation...
i would be pleased if u can try it for me
thanx a lot
regards
marco
> -----Original Message-----
> From: EXT Harbarth, Juliane [mailto:Juliane.Harbarth@xxxxxxxxxxxxxx]
> Sent: 20. January 2000 15:58
> To: xsl-list@xxxxxxxxxxxxxxxx
> Subject: RE: option list using XSL
>
>
>
> > 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
>
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|