Wrox Home  
Search P2P Archive for: Go

  Return to Index  

aspx thread: Populate PDF From ASP.Net page


Message #1 by hverstandig@g... on Tue, 12 Nov 2002 21:22:02
Does anyone out there have any experience populating a pdf file using the 
FDF toolkit from Adobe from an ASP.Net page? I am using the following 
code, but it is blowing up on the line shown, which is a method call 
required by the FDF toolkit:

<%@ Import Namespace="System.Runtime.InteropServices" %>
<%@ Page Language="vb" AutoEventWireup="false" aspcompat=true 
Inherits="CLIPSLink.eSignPrintMPN"%>
 
<%
Dim objFDF as object
objFDF = server.CreateObject("FdfApp.fdfapp")
 
Dim objFDFOut as object
objFDFOut = objFDF.FDFCreate   '<<======= LIBRARY NOT REGISTERED ERROR 
OCCURS ON THIS LINE
 
objFDFOut.FDFSetValue("LastName", "Wilson", False)

This method call works fine with classic ASP, but not with .Net.

  Return to Index