ASP Examples

ChilkatHOMEASPVisual BasicVB.NETC#Visual C++CMFCDelphiFoxProJavaPerlPHPPythonRubySQL ServerVBScript

ASP Examples

ASP String
ASP Byte Array
Bounced Mail
Character Encoding
Digital Certificates
Digital Signatures
Email
FTP
HTML-to-XML
HTTP
IMAP
Encryption
MHT / HTML Email
S/MIME
Socket
Spider
RSA Encryption
Tar
ASP Upload
XML
XMP
Zip Compression

More Examples...
Email Object
POP3
SMTP
RSS
Atom
Self-Extractor

Unreleased...
Service
PPMD
Deflate
Bzip2
LZW
Bz2
DH Key Exchange
DSA
Icon

 

 

 

 

 

 

Add Child Tree

Add a child tree to an existing XML document.

Download Chilkat XML ActiveX

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%

'  First, build a sample XML document:
set xml = Server.CreateObject("Chilkat.Xml")
xml.Tag = "stocks"

Set xmlM = xml.NewChild("Microsoft","")
xmlM.NewChild2 "symbol","MSFT"
xmlM.NewChild2 "recentPrice","28.00"

Set xmlG = xml.NewChild("Google","")
xmlG.NewChild2 "symbol","GOOG"
xmlG.NewChild2 "recentPrice","440.00"

'  Display the XML so far...
Response.Write Server.HTMLEncode( xml.GetXml()) & "<br>"

'  This is the XML displayed:
'  <stocks>
'      <Microsoft>
'          <symbol>MSFT</symbol>
'          <recentPrice>28.00</recentPrice>
'      </Microsoft>
'      <Google>
'          <symbol>GOOG</symbol>
'          <recentPrice>440.00</recentPrice>
'      </Google>
'  </stocks>

'  We want to add Yahoo to it:

xYahoo = "<Yahoo><symbol>YHOO</symbol><recentPrice>28.00</recentPrice></Yahoo>"

set xmlYahoo = Server.CreateObject("Chilkat.Xml")
xmlYahoo.LoadXml xYahoo

'  Add the xmlYahoo document just under the root node of
'  our original XML document:
xml.AddChildTree xmlYahoo

'  Display the result:
Response.Write Server.HTMLEncode( xml.GetXml()) & "<br>"


%>
</body>
</html>

 

Need a specific example? Send a request to support@chilkatsoft.com

© 2000-2008 Chilkat Software, Inc. All Rights Reserved.