tags:

views:

524

answers:

5

How to generate Word document(doc,docx) in ASP.NET?

+2  A: 

You can use WordML to create Word 2003 docx: http://www.informit.com/guides/content.aspx?g=xml&seqNum=176

lod3n
+2  A: 

You can create OpenXML documents using the Open XML SDK 2.0 for Microsoft Office. Note that this only applies to .docx, not .doc binary files from earlier versions of Word.

Documentation can be found here.

Grant Wagner
A: 

Search for "Interop"

BenB
A: 

Joel offers some tips for that here: Why are the Microsoft Office file formats so complicated? (And some workarounds)

Nick
A: 

I suggest getting Aspose.Words

erikkallen