<![CDATA
-
Hi.. I exported an access 2000 table to XML file in some elements appears: myDataHere in some elements appears: <![CDATA[myDataHere]]> what does CDATA do ? what if I ommit it ? note than in cases that CDATA appears myDataHere includes (") or (..)
-
Hi.. I exported an access 2000 table to XML file in some elements appears: myDataHere in some elements appears: <![CDATA[myDataHere]]> what does CDATA do ? what if I ommit it ? note than in cases that CDATA appears myDataHere includes (") or (..)
CDATA specifies a chunk of raw character data, terminated by
]]>
. This allows you to embed data with characters with special meaning in XML (namely,<
,>
,&
, and"
) without escaping them. More info (straight from the XML spec): http://www.w3.org/TR/REC-xml#sec-cdata-sect[^] - Mike -
Hi.. I exported an access 2000 table to XML file in some elements appears: myDataHere in some elements appears: <![CDATA[myDataHere]]> what does CDATA do ? what if I ommit it ? note than in cases that CDATA appears myDataHere includes (") or (..)
CDATA is simply data that will not be parsed when read. For example, I have an XML help file that contains code snippets for common programming tasks. Since a lot of the characters in the code would violate XML rules and I don't want the format touched. I enter that data into my file as CDATA-type nodes. Cheers, Tom Archer Inside C#,
Extending MFC Applications with the .NET Framework It's better to listen to others than to speak, because I already know what I'm going to say anyway. - friend of Jörgen Sigvardsson -
CDATA is simply data that will not be parsed when read. For example, I have an XML help file that contains code snippets for common programming tasks. Since a lot of the characters in the code would violate XML rules and I don't want the format touched. I enter that data into my file as CDATA-type nodes. Cheers, Tom Archer Inside C#,
Extending MFC Applications with the .NET Framework It's better to listen to others than to speak, because I already know what I'm going to say anyway. - friend of Jörgen Sigvardsson -
I didn't know about this. Helpful! :)
"Blessed are the peacemakers, for they shall be called sons of God." - Jesus
"You must be the change you wish to see in the world." - Mahatma GandhiCoolbeans. I'm glad I could you also. By the way, great sig! Funny how words like that can mean different things to you depending on what you're currently going through in life. Cheers, Tom Archer Inside C#,
Extending MFC Applications with the .NET Framework It's better to listen to others than to speak, because I already know what I'm going to say anyway. - friend of Jörgen Sigvardsson -
CDATA is simply data that will not be parsed when read. For example, I have an XML help file that contains code snippets for common programming tasks. Since a lot of the characters in the code would violate XML rules and I don't want the format touched. I enter that data into my file as CDATA-type nodes. Cheers, Tom Archer Inside C#,
Extending MFC Applications with the .NET Framework It's better to listen to others than to speak, because I already know what I'm going to say anyway. - friend of Jörgen SigvardssonThank you all :)
-
Coolbeans. I'm glad I could you also. By the way, great sig! Funny how words like that can mean different things to you depending on what you're currently going through in life. Cheers, Tom Archer Inside C#,
Extending MFC Applications with the .NET Framework It's better to listen to others than to speak, because I already know what I'm going to say anyway. - friend of Jörgen SigvardssonTom Archer wrote: By the way, great sig! :-D Tom Archer wrote: Funny how words like that can mean different things to you depending on what you're currently going through in life. True. :)
"Blessed are the peacemakers, for they shall be called sons of God." - Jesus
"You must be the change you wish to see in the world." - Mahatma Gandhi