Reputation: 7879
I have PDF that opens in a browser (iframe) that has standard PDF form fields. I would like the user to fill out all the fields and then press an HTML submit button (located outside the iframe in the surrounding ASPX page) so that all the data in the PDF that was filled out in the PDF Form Fields posts that to another ASPX page.
How would I go about doing something like this?
Upvotes: 2
Views: 1619
Reputation: 14246
I think the easiest way is to follow recommended path: add submit button to your PDF form (not surrounding ASPX page).
The button should submit to another ASPX page. That (second) ASPX page should parse submitted PDF/FDF/XFDF itself or with help of a library.
Upvotes: 2