Nina-piaoye
protected void ConvertToHtml(string docPath,string htmlPath)
        {
             Word.Application app=new Word.Application();
             app.Visible=false;
             Object o=Missing.Value;
             object docFile=docPath;
             _Document doc=app.Documents.Open(ref docFile,ref o,ref o,ref o,ref o,ref o,ref o,ref o,ref o,ref o,ref o,ref o,ref o,ref o,ref o);
             object fileName=htmlPath;
             object format=8;//Html
             doc.SaveAs(ref fileName,ref format,ref o,ref o,ref o,ref o,ref o,ref o,ref o,ref o,ref o,ref o,ref o,ref o,ref o,ref o);
             object t=true;
             app.Quit(ref t,ref o,ref o);
        }

我放了演示程序在上面的FTP里,关于C#和OFFICE操作的更多信息,等看一下微软的白皮书了

Whitepaper: Using Microsoft Office from C#

在www.gotdotnet.com上可以找到

分类:

技术点:

相关文章:

  • 2021-11-06
  • 2022-12-23
  • 2021-08-13
  • 2022-01-30
  • 2021-12-24
猜你喜欢
  • 2021-09-03
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-08
  • 2022-01-02
  • 2021-10-25
相关资源
相似解决方案