xml value
-
why do i get an error when trying to insert "PCI\VEN_1106&DEV_3038&SUBSYS_30381849&REV_81\3&267A616A&0&80" as value of my xml element... i'm new to xml. pls help. thanks
-
why do i get an error when trying to insert "PCI\VEN_1106&DEV_3038&SUBSYS_30381849&REV_81\3&267A616A&0&80" as value of my xml element... i'm new to xml. pls help. thanks
What's the error you get ? How are you inserting it ?
Christian Graus - Microsoft MVP - C++ "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
What's the error you get ? How are you inserting it ?
Christian Graus - Microsoft MVP - C++ "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
This is the error message "An error occurred while parsing EntityName. Line 1, position 160." This is the code upon insertion: elmXML = docXMLFile.CreateElement(element); elmXML.InnerXml = strNewLine.ToString(); docXMLFile.DocumentElement.AppendChild(elmXML) the error occurs on the second line.
-
why do i get an error when trying to insert "PCI\VEN_1106&DEV_3038&SUBSYS_30381849&REV_81\3&267A616A&0&80" as value of my xml element... i'm new to xml. pls help. thanks
i think it's due to the & sign in your string.
-
i think it's due to the & sign in your string.
yes, i guess so too.. if it has the single "\", it won't accept the string? so how will i go about it?
-
yes, i guess so too.. if it has the single "\", it won't accept the string? so how will i go about it?
u have to replace & with sth. that is allowed in plain html i think u should replace & with & for more info. http://www.html-reference.com/Escape.htm