I have an ASP.NET MVC3 Application, And I have a form where it generates an output form. Currently I generate the output form in an html file, but I want to switch it to generate it as a Microsoft Word Document, or essentially populate a word template. What would be the best way to accomplish this?
1 Answer
There are several components that allow you to generate a word document programmatically. The one I've had the most success with is Syncfusion DocIO It's a paid utility but worth the price if you need to manipulate word documents programmatically. If cost is an issue, there are tutorials on how to build a server-side document generation utility using Open XML
1 Comment
AustinT
I had a quick question, when dealing with this problem, would having the server-side dealing with it be the only solution? Would I be able to have the client-side deal with it?