This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Illegal attribute name


hi,
I have the following  xml file
<?xml version="1.0" encoding="UTF-8"?>
  <test>
        <T fldname="1" reserve2="ASD"/>
        <T fldname="8" reserve2="asd"/>
  </test>

I want to convert this to
<1>ASD</1>
<8>asd</8>

I use the template .
  <xsl:template match="/test/T">
    <xsl:element name="{@fldname}">
      <xsl:apply-templates />
           <xsl:value-of select="@reserve2"/>
           </xsl:element>
  </xsl:template>

It gives illegal attribute name when I am using a number as the 'fldname' value.
If its an alphabet it works fine.what is the work around?
 thanks
 Samuel Abraham



--

This e-mail may contain confidential and/or privileged information. If you are not the intended recipient (or have received this e-mail in error) please notify the sender immediately and destroy this e-mail. Any unauthorized copying, disclosure or distribution of the material in this e-mail is strictly forbidden.



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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]