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

 

 

 

 

 

 

Re-Encode a String (Hex, Base64, URL, etc)

Demonstrates how to convert from one encoding to another. For example: base64 to hex, URL to base64, base64 to quoted-printable, etc.

Note: The ReEncode method is unreleased at the time of this writing (08-April-2008) The next major Chilkat Crypt2 release after this date will include the ReEncode method.

Download Chilkat Crypt ActiveX

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

set crypt = Server.CreateObject("Chilkat.Crypt2")

'  Any string argument automatically begins the 30-day trial.
success = crypt.UnlockComponent("30-day trial")
If (success <> 1) Then
    Response.Write "Crypt component unlock failed" & "<br>"

End If

hexStr = "41424344E0E1E2E3"

fromEncoding = "hex"
toEncoding = "base64"

'  Convert from hex to base64
base64 = crypt.ReEncode(hexStr,fromEncoding,toEncoding)
Response.Write Server.HTMLEncode( base64) & "<br>"

'  Now convert from base64 to quoted-printable:
fromEncoding = "base64"
toEncoding = "quoted-printable"
qp = crypt.ReEncode(base64,fromEncoding,toEncoding)
Response.Write Server.HTMLEncode( qp) & "<br>"

'  Now convert from quoted-printable to URL:
fromEncoding = "quoted-printable"
toEncoding = "url"
urlEnc = crypt.ReEncode(qp,fromEncoding,toEncoding)
Response.Write Server.HTMLEncode( urlEnc) & "<br>"

'  Now convert from URL back to hex:
fromEncoding = "url"
toEncoding = "hex"
hexStr = crypt.ReEncode(urlEnc,fromEncoding,toEncoding)
Response.Write Server.HTMLEncode( hexStr) & "<br>"

'  The output of this program is:
'  QUJDRODh4uM=
'  ABCD=E0=E1=E2=E3
'  ABCD%E0%E1%E2%E3
'  41424344E0E1E2E3

%>
</body>
</html>

 

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