I have a .NET Core 3.0 project, building an Angular web app.
This app has a fairly complicated form system.
In the past this form was actually housed inside of Access, and then VB was used to dump the values into the docx version of the form via the bookmarks.
This whole process is now getting put into our new Angular app.
I need an established method for grabbing the form controls, grabbing the existing docx, and putting those form control values into the docx.
Sadly, there does not seem to be anything that does this. Docxtemplater is weighty, not very well documented, and not a route I would like to take. I would prefer something inside .NET Core to allow this to happen.
I wish I could just execute the old VB script from inside my project to generate the form as it worked flawlessly.
I have tried docxtemplater. I have tried the docx nuget package.