DLL
 

ABCpdf6.DLL is the core DLL. It is a COM component incorporating our proprietary Direct to PDF technology, designed for high performance PDF manipulation in a multithreaded environment.

 

   

Reg
 

ABCpdf is registered and installed from the System32 directory so that it is available to any application on your computer.

All you need to create an ABCpdf document object from ASP is to use the following code:

Set doc = Server.CreateObject("ABCpdf6.Doc")

 

   

Example
 

This is a simple example page. All it does is report the ABCpdf License information.

<html>
<body>

<%

Set theDoc = Server.CreateObject("ABCpdf6.Doc")
Response.Write("License: " & theDoc.License & "<br>")

%>

</body>
</html>

 

   

Security
 

Active Server Pages operate under a restricted set of security permissions. It is quite common for the IIS user not to be able to create or write files.

So if you want to save a PDF file from your script it is quite likely that you will need to adjust the permissions on your destination directory to allow write access for the IIS user (typically IUSR_MACHINENAME).