Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

A name contained an invalid character

Status
Not open for further replies.

Elysium

Programmer
Aug 7, 2002
212
US
I have the following element in the original XML file:

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]
 
Nevermind. The whole error was caused by a line feed issue.



Randy
[afro]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top