Submit edited pdf to server ASP.Net MVC

Hi All,

I am developing a project using this library to fill fillable pdf form and submit it to the server.

Could you please help me how to submit the pdf form to the server using ASP.Net MVC and PDFTron javascript.

Thank you guys.

Regards,

Alvian

Once your user has finished filling the form data, you actually just want to export the data to XFDF(XML) and sent that to your server. The PDF file is left alone (this of course saves a lot of bandwidth, as the XFDF file will be much smaller then the PDF.

This guide explains this more.
https://www.pdftron.com/webviewer/demo/tutorials/getting-started-annotations.html

Essentially, you are just passing an XML string back to your server, and you can with it as you like, typically entered into a database. Or you can merge the data into the PDF server side.