| Subject: RE: option list using XSL From: "Harbarth, Juliane" <Juliane.Harbarth@xxxxxxxxxxxxxx> Date: Thu, 20 Jan 2000 14:57:35 +0100 | 
> 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
| Current Thread | 
|---|
| 
 | 
| <- Previous | Index | Next -> | 
|---|---|---|
| Re: option list using XSL, Steve Tinney | Thread | RE: option list using XSL, Marco . Mistroni | 
| RE: position() of the parent, Pawson, David | Date | Re: option list using XSL, Steve Tinney | 
| Month |