Recently, i created a webservice to generate the word and excel files using Office Open XML. The Open XML SDK can be downloaded from http://www.microsoft.com/downloads/details.aspx?familyid=ad0b72fb-4a1d-4c52-bdb5-7dd7e816d046&displaylang=en Use the following namespaces using DocumentFormat.OpenXml;
using DocumentFormat.OpenXml.Packaging;
Code sample : using (WordprocessingDocument wordDoc = WordprocessingDocument.Create(@"d:\doc\hello.docx", WordprocessingDocumentType.Document))
{...
No comments yet, be the first one to post comment.