In this demo you can learn how to create a PDF form with various fields and how
to submit the values entered in the form to a web page. You can choose what type
of fields to include in form and also the URL where to GET or POST the values entered
in form.
When the Submit button of the PDF form is pressed, the PDF viewer will make a GET
or a POST request to the URL below function of the selected method.
When the selected method is GET the form fields names and values will be added as
key-value pairs in the query string of the URL and they can be accessed in ASP.NET
using the Request.QueryString collection.
When the selected method is POST the form fields names and values will be posted
as key-value pairs to the URL and they can be accessed in ASP.NET using the Request.Form
collection.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|