Example code is for an older version of Server, newer code is available.
<!-- Copyright (c) 2021 ActivePDF, Inc. -->
<!-- ActivePDF Server 2009 -->
<!-- Example generated 02/24/21 -->
<%
Dim strPath, intPSToPDF
strPath = Server.MapPath(".") & "\"
' Instantiate Object
Set oSVR = Server.CreateObject("APServer.Object")
' Set the basic metadata in the created PDF
oSVR.PDFTitle = "activePDF Metadata Example"
oSVR.PDFAuthor = "John Doe"
oSVR.PDFSubject = "Examples"
oSVR.PDFKeywords = "examples, samples, metadata"
' Convert the PostScript file into PDF
intPSToPDF = oSVR.PSToPDF(strPath & "PS.ps", strPath & "Metadata.pdf")
If intPSToPDF <> 0 Then
ErrorHandler "PSToPDF", intPSToPDF
End If
' Release Object
Set oSVR = Nothing
' Process Complete
Response.Write "Done!"
' Error Handling
Sub ErrorHandler(method, outputCode)
Response.Write("Error in " & method & ": " & outputCode)
End Sub
%>