Chilkat HOME ASP Visual Basic VB.NET C# Visual C++ C MFC Delphi FoxPro Java Perl PHP Python Ruby SQL Server VBScript
|
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.