Reputation: 2026
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?
Upvotes: 0
Views: 1305
Reputation: 9153
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
Upvotes: 2