Chilkat
HOME
Android™
ASP
Visual Basic
VB.NET
C#
iOS (IPhone)
Objective-C
C++
C
MFC
Delphi
FoxPro
Java
Perl
PHP Extension
PHP ActiveX
Python
PowerShell
Ruby
SQL Server
VBScript
|
(Visual FoxPro) Using CDATA in XMLDemonstrates how to force the content of a node to be encapsulated in CDATA. The output of the following program is an XML document that looks like this:
<root>
<year>2009</year>
<junk1>abc .. < & > 123</junk1>
<junk2><![CDATA[abc .. < & > 123]]></junk2>
</root>
LOCAL loXml LOCAL loChild1 LOCAL loChild2 LOCAL loChild3 loXml = CreateObject('Chilkat.Xml') loXml.Tag = "root" loChild1 = loXml.NewChild("year","2009") loChild2 = loXml.NewChild("junk1","abc .. < & > 123") loChild3 = loXml.NewChild("junk2","abc .. < & > 123") loChild3.Cdata = 1 RELEASE loChild1 RELEASE loChild2 RELEASE loChild3 ? loXml.GetXml() |
© 2000-2010 Chilkat Software, Inc. All Rights Reserved.
Mail Component · .NET Email Component · ASP Mail Component · XML Parser