-
How to trap the 'Submit Button' from a pdf file in ASP .Net
Dear All,
I have been able to write my first application in .Net with Adobe using
the FDF Toolkit...The following is the code...
Private Sub Page_Load(...)
Dim FdfAcX_App As FdfAppClass
FdfAcX_App = New FdfAppClass()
Dim FdfAcX_Doc As FdfDoc
FdfAcX_Doc = FdfAcX_App.FDFCreate()
FdfAcX_Doc.FDFSetValue("Date", "31 December 2002", False)
FdfAcX_Doc.FDFSetValue("Name", "Ganesh Marathe", False)
FdfAcX_Doc.FDFSetValue("Address", "402 Nishant, Koregoan Park", False)
FdfAcX_Doc.FDFSetValue("City", "Auckland 411001", False)
FdfAcX_Doc.FDFSetValue("State", "New Zealand", False)
FdfAcX_Doc.FDFSetFile("http://pc-test-nt/Pdfs/generateFDF.pdf")
FdfAcX_Doc.FDFSaveToFile("c:\temp\test.fdf")
FdfAcX_Doc.FDFClose()
If Not IsPostBack Then
Response.ContentType = "Application/vnd.fdf"
Response.WriteFile("c:\temp\test.fdf")
Response.End()
End If
End Sub
End Sub
I have a GetData button on my pdf form. I would like to trap the button click
and get the data entered by the user.
Could some help me this?
Thanks a lot in advance.
Many Regards
Sunil
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
|
Top DevX Stories
Easy Web Services with SQL Server 2005 HTTP Endpoints
JavaOne 2005: Java Platform Roadmap Focuses on Ease of Development, Sun Focuses on the "Free" in F.O.S.S.
Wed Yourself to UML with the Power of Associations
Microsoft to Add AJAX Capabilities to ASP.NET
IBM's Cloudscape Versus MySQL
|
Bookmarks