ASKER
ASKER
ASKER
C# is an object-oriented programming language created in conjunction with Microsoft’s .NET framework. Compilation is usually done into the Microsoft Intermediate Language (MSIL), which is then JIT-compiled to native code (and cached) during execution in the Common Language Runtime (CLR).
TRUSTED BY
If form fields in PDF are random then only way out is to create a mapping, for example, the form field names for First Name are:
firstname
fname
first name
fn
and assuming your database field name is firstname
then you could have a mapping table as shown below:
Source Field Target Field
firstname firstname
fname firstname
first name firstname
fname firstname
After that using itextsharp you can read pdf fields
Open in new window
I wrote this code without IDE so you might want to tweak datatypes and some string conversation, but I hope you are getting the idea.
You can make it as dynamics as you want and then finally present the mapping to the user to verify it.
Regards,
Chinmay.