I have the requirement that I need to open a document in Microsoft word processor from an ASP.NET application. So far I am able to show all the document, but I am not sure how I could open a document in an ASP.NET application. Please advise and let me know how flexible it is in future perspective if in case I need to perform further operation like update and relocation etc.
http://support.microsoft.com/kb/257757 There are third-party components designed to process Office documents in a server environment. Aspose is quite popular, though I have never used them personally http://www.aspose.com/categories/.net-components/aspose.words-for-.net/default.aspx UPDATE Open XML is supported in ASP.Net applications and is a good option (though I believe Aspose may be easier to work with). See @Seth's answer about Open XML, See @Rob's answer about experience with Aspose vs. Open XML. |
||||
|
If the document is from Office 2007 or higher (docx, xlsx, etc), then you can work with the files programmatically in .Net. Research Office Open Xml. Microsoft provides an Open XML SDK 2.0 for Microsoft Office. An example from msdn is provided below:
|
|||||||||
|
|
I have an Aspose.Total license which allows me to create Word, PDF docs, etc. I initially tried Open XML but there wasn't enough examples to do what I needed. Support for Office 2010 in the form of examples for Open XML are thin at best. When it comes right down to it, why reinvent the wheel in a ton of code with Open XML (which if you code it yourself there is no production support) when you can purchase a library for $800 bucks? If I get paid $100 per hour and I take more than 8 hours to do what Aspose can do, I am loosing money. My recommendation is that if you need production support for your app and want to get the project going today, try Aspose. |
|||
|