ASP Examples

ChilkatHOMEAndroid™ASPVisual BasicVB.NETC#iOS (IPhone)Objective-CC++CMFCDelphiFoxProJavaPerl
PHP ExtensionPHP ActiveXPythonPowerShellRubySQL ServerVBScript

ASP Examples

ASP String
ASP Byte Array
Bounced Mail
Bz2
Character Encoding
CSV
Digital Certificates
Digital Signatures
Email
FTP
HTML Conversion
HTTP
IMAP
Encryption
MHT / HTML Email
POP3
RSA
S/MIME
SMTP
Socket
Spider
SSH
SSH Tunnel
SSH Key
SFTP
Tar
ASP Upload
XML
XMP
Zip Compression

More Examples...
Amazon S3
Email Object
DKIM / DomainKey
NTLM
DH Key Exchange
DSA
FileAccess
RSS
Atom
Self-Extractor
Service
PPMD
Deflate
Bzip2
LZW

 

 

 

 

 

 

Load file into XML as Base64 Encoded Content

Loads any type file into an XML document. The file content is encoded as base64.

Download Chilkat XML ActiveX

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
set docRoot = Server.CreateObject("Chilkat.Xml")

docRoot.Tag = "myDoc"

'  To zip compress the content, set this flag to 1
zipContent = 0
'  To 128-bit AES encrypt the content, set this flag to 1
encryptContent = 0
encryptPassword = ""

' pdfNode is a Chilkat.Xml
Set pdfNode = docRoot.NewChild("pdf","")

'  Embed a PDF into XML
success = pdfNode.SetBinaryContentFromFile("sample.pdf",zipContent,encryptContent,encryptPassword)
If (success <> 1) Then
    Response.Write "<pre>" & Server.HTMLEncode(pdfNode.LastErrorText) & "</pre>"

End If

Response.Write "<pre>" & Server.HTMLEncode(pdfNode.LastErrorText) & "</pre>"

'  Display the entire XML document:
Response.Write "<pre>" & Server.HTMLEncode( docRoot.GetXml()) & "</pre>"

'  Get the Base64-encoded content and display it:
Response.Write "<pre>" & Server.HTMLEncode( pdfNode.Content) & "</pre>"

'  Extract the binary content from XML:
unzipContent = 0
decryptContent = 0
decryptPassword = ""
success = pdfNode.SaveBinaryContent("out.pdf",unzipContent,decryptContent,decryptPassword)
If (success <> 1) Then
    Response.Write "<pre>" & Server.HTMLEncode(pdfNode.LastErrorText) & "</pre>"

End If

Response.Write "<pre>" & Server.HTMLEncode("Success!") & "</pre>"
%>
</body>
</html>

 

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