RE: [xsl] import entire tags

Subject: RE: [xsl] import entire tags
From: Jarno.Elovirta@xxxxxxxxx
Date: Fri, 17 Jan 2003 14:01:34 +0200
Hi,

> ...
> <hello>
>       <option value="1">yo1</option>
>       <option value="2">yo2</option>
>       <option value="3">yo3</option>
>       ...
> </hello>
> ...
> 
> And I want to import the entire <option>-tags (<option value
> ="1">yo1</option>) in my xsl.
> Is this possible without using <xsl:atrribute>?
> 
> For example the xsl:
> <select name="hello>
>       <xsl:for-each select="hello">
>             <xsl:value-of select="The entire option tag without using
> xsl:atrribute"/>
>       </xsl:for-each>
> </select>

<select name="hello">
  <xsl:copy-of select="hello/*" />
</select>

Cheers,

Jarno - Lords of Acid: Spacy Bitch

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread