OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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/