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
|