*posted (misspelt posed)
I'm definately not explaining things correctly. I'll try again.
I have a dummy page (I don't have access to the clients page, but I assume its along these lines...)
The client complains that he gets his xml files and they are not formed correctly. Instead they have to replace " with ' to get it working.
So on my dummy page I go:
ReturnXML = Request.Form("NNECXML")
' Write out the returned XML
if ReturnXML <> "" then
Response.Write("XML Generated")
Response.Write("<BR>-----------------<BR>")
Response.Write(Server.HTMLEncode(ReturnXML))
end if
This is what it looks like on the web page
XML Generated
-----------------
<?xml version="1.0" encoding="utf-8"?><xiEngineering:NNEC_XML xsi:schemaLocation="xiEngineering xiEngineering.xsd" xmlns:xiEngineering="xiEngineering" xmlns:gl="Global" xmlns:xsi="
Item="User ID" Value="a1234"></Info><Info Item="Distributor ID" Value="dist1234"></Info><Info Item="Site ID" Value=""></Info><Info Item="Quote Type" Value="SMB"></Info><Info Item="Quote Number"...
And this is what the source looks like - Its the source I'm more interested in. It needs to be correct, because they are taking from the form value.
XML Generated<BR>-----------------<BR><?xml version="1.0" encoding="utf-8"?><xiEngineering:NNEC_XML xsi:schemaLocation="xiEngineering xiEngineering.xsd" xmlns:xiEngineering="xiEngineering" xmlns:gl="Global" xmlns:xsi="
Item="User ID" Value="a1234"></Info><Info Item="Distributor ID" Value="dist1234"></Info><Info Item="Site ID" Value=""></Info><Info Item="Quote Type"...
Now I'll also say that they are not complaining about > or &alt; ...