up vote 1 down vote favorite
2
share [g+] share [fb]

I want to set up a template document along the lines of this:

================
Doc content

----------------
Merge Field1
Merge Field2
Merge Field3
----------------

More doc content
================

I then want to be able to open the document, load a DataTable from the database in C# and merge the fields in the template section in the middle. The DataTable will have multiple records so it needs to merge and output multiple templates to create one big document. I can't find any examples of doing this.

link|improve this question

51% accept rate
feedback

4 Answers

up vote 2 down vote accepted

I had a job doing this stuff a while back. We were using Word Automation but it's painful (because Word will do crazy things like pop up a modal dialog which will break your code).

We moved to using the Aspose library. I found it fairly reasonable and quite fully featured in this area (there is good support for merge fields). It is, however, commercial.

(I have no ties to the company - I've just used their software)

Edit: If you only need Word 2007 support, don't bother with these guys; there are plenty of free libraries. Support for older versions is harder to find though

link|improve this answer
We used Aspose and it works well. – Craig Aug 22 '11 at 3:58
feedback

If you are looking for information about programmatically replacing the Mail Merge fields using C# code then this article might help.

link|improve this answer
feedback

I've used this library to generate MS Word 2007 documents. Hope it'll help you. P.S. Previously this library was completely free but now they've added a commercial version too. But free version contains all necessary features for you.

link|improve this answer
feedback

Do you really need to open the document in Word?

I would suggest using OpenXML SDK 2.0 from Microsoft to replace the MailMerge fields (note: this will work for Office 2007 and later, not sure about earlier versions of Office documents), and then open the document in Word (if you really need to).

As a side note, using OpenXML SDK is the only way Microsoft supports server-side manipulation of Office files.

link|improve this answer
I am pretty sure this SDK only works with Office 2007 + – Craig Aug 30 '11 at 9:53
You're right Craig... – George Sep 7 '11 at 16:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.