Database
fdf.txt
Associated article: Examining the FDF Toolkit
Tags: Database
Published source code accompanying the article by Lauren Hightower in which she shows how you can use Adobe's Forms Data Format (FDF) Toolkit to make PDF documents come alive. Also see FDF.ZIP.
Examining the FDF Toolkit
by Lauren Hightower
Listing One
<%
Set objFDF = Server.CreateObject("FdfApp.FdfApp")
Set FDF = objFDF.FDFCreate
%>
Listing Two
<%
For Each vpItem In Request.Form
FDF.FDFSetValue vpItem, UCase(Request.Form(vpItem)), False
...


