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

 

 

 

 

 

 

Load a Certificate from a .cer File

ASP script to load a certificate from a .cer certificate file.

<html>
<head>
<title>Load a Certificate from a .cer File</title>
</head>
<body>
<%
set cert = Server.CreateObject("ChilkatCertificate.ChilkatCert")

if (cert.LoadFromFile("c:/temp/myCert2.cer") = 1) then

	Response.Write "Loaded " & cert.SubjectDN
	
else

	Response.Write cert.LastErrorHtml

end if


%>
</body>
</html>

 

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

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