当前位置:开发者网络 >> 技术教程 >> .NET教程 >> 报表/图形/Office >> 内容
精彩推荐
分类最新教程
分类热点教程
  
呵呵,Word转换成Html的程序,昨天跟开心、sonymusic闲聊的时候提到的
作者:未知
日期:2003-07-12
人气:
投稿:Andy.m(转贴)
来源:未知
字体:
收藏:加入浏览器收藏
以下正文:
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上可以找到
相关文章: