I have the following element in the original XML file:
I am using an xslt to place the value of the element above using:
For whatever reason, the new document fails to load in IE and gives me the "A name contained an invalid character" error. I did type in a space before 1000 and the document loaded. Why is this?
Randy
![[afro] [afro] [afro]](/data/assets/smilies/afro.gif)
Code:
<AddressLine1>1000 MANSELL ROAD</AddressLine1>
I am using an xslt to place the value of the element above using:
Code:
<xsl:element name="DestinationAddressLine1">
<xsl:value-of select="//Shipment/ShipTo/Address/AddressLine1"/>
</xsl:element>
For whatever reason, the new document fails to load in IE and gives me the "A name contained an invalid character" error. I did type in a space before 1000 and the document loaded. Why is this?
Randy
![[afro] [afro] [afro]](/data/assets/smilies/afro.gif)