On 7/09/2012 20:45, fairway01 wrote: > when submit button is click I want to read the values the user entered into > the form and pass along those values. When the submit button is clicked, the data can be sent to the server in 4 different ways, depending on the settings of the submit action: 1. as an ordinary query string similar to what you get when you post an HTML form, 2. as an FDF file, 3. as an XFDF file, 4. as a full-blown PDF file (only possible if the end-user has Acrobat instead of Reader).
Let's assume the end user isn't using Acrobat, then: 1. is a no-brainer, the web server doesn't even know the data was submitted from a PDF, 2. requires the use of FdfReader (a class that is shipped with iText), 3. requires an XML parser (pick your favorite one). If this were a question on Stackoverflow, I'd vote it down. ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ iText-questions mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/itext-questions iText(R) is a registered trademark of 1T3XT BVBA. Many questions posted to this list can (and will) be answered with a reference to the iText book: http://www.itextpdf.com/book/ Please check the keywords list before you ask for examples: http://itextpdf.com/themes/keywords.php
