Code Samples - Neevia docCreator

Example 17: Split an existing PDF file into single pages - ASP Copy 

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
   <%
     Dim DC : Set DC = Server.CreateObject("Neevia.docCreator")

     Dim RVal : RVal=DC.splitPDF("d:\test.pdf","d:\out\")

     Set DC = Nothing

     If RVal=0 Then
       Response.Write "Done !!!"
     Else
       Response.Write "There was an error splitting the document !!!"
     End If
   %>