iTextSharp saving a filled form (C#.Net)
On an asp.net page I am allowing my user to enter data to my pdf form, all I want to do is once they submit, save that form as a PDF file under different name into a directory.
Do I have to read all fields (reque开发者_Python百科st.form) one-by-one and use pdfstamper to save into a new file or is there a quick way to do a clone of the page and save under different name?
You can set them all at once:
StackOverflow doesn't like '(' or ')' in its links
- Make sure your PDF is submitting FDF data
acroFields.setFields()
精彩评论