Export to Word Document in C#

后端 未结 7 671
你的背包
你的背包 2020-12-10 18:55

I\'m looking for a .NET library that will allow creation of a Word document. I need to export HTML based content to a Word doc (97-2003 format, not docx).

I know th

7条回答
  •  春和景丽
    2020-12-10 19:39

    Using Word Automation from ASP.NET is not a good idea (see the MSKB - http://support.microsoft.com/default.aspx?scid=kb;EN-US;q257757#kb2)

    If you are not using WinForms your best option IMHO is to generate RTF, which ms word will happily open. (see the link in the already referenced article).

    Good Luck!

提交回复
热议问题