|
[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Attribute naming with XSL
Hi Deniz,
> How can i assign the value of an tag attribute using XSL?
>
> i try below but it did not work (with xsl not xslt)
>
> <xsl:for-each select="INSERT_PAGE/ROW">
> <input type="text" name="{NAME}">
> </xsl:for-each>
"XSL" (i.e. the Microsoft dialect based on an early WD of XSL) doesn't
support attribute value templates (the use of {}s in attribute
values), so you have to use xsl:attribute instead. The following
should work:
<input type="text">
<xsl:attribute name="name">
<xsl:value-of select="NAME">
</xsl:attribute>
</input>
Cheers,
Jeni
---
Jeni Tennison
http://www.jenitennison.com/
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|
|||||||||

Cart








