Previous | Next | (P-PDF) Mac Issues
Topic: Problem with FDF on Mac
Conf: (P-PDF) Mac Issues, Msg: 95334
From: jdthepig
Date: 8/28/2003 07:33 AM
I have an ASP page that populates a PDF with data from our database using Acrobat FDF Toolkit - Version 5. It works fine on Windows systems but Mac users are having problems. In one specific case, the Mac has OS 10, IE 5.2, and Acrobat reader 5.0. When the user clicks the link to the ASP page, it opens the Download Manager, downloads the ASP page to the desktop, and opens the "Apple System Profiler". Acrobat never loads. Apparently, files with the .ASP extension are "Apple System Profiler" files. Has anybody seen anything like this? Below are the relevant lines of code from the ASP page:
Dim FdfAcX, outputFDF
Set FdfAcX = Server.CreateObject("FdfApp.FdfApp")
Set outputFDF = FdfAcX.FDFCreate
outputFDF.FDFSetValue "LName", rsAppBr("BrLName"), False
outputFDF.FDFSetFile "https://www.ourdomain.org/MPNForm.pdf"
outputFDF.FDFSetTargetFrame "_blank"
Response.ContentType = "application/vnd.fdf"
Response.BinaryWrite outputFDF.FDFSaveToBuf
outputFDF.FDFClose