html5中文学习网

您的位置: 首页 > 网络编程 > ASP.NET » 正文

Word转换成Html的程序_.NET教程_编程技术

[ ] 已经帮助:人解决问题
word|程序|转换
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上可以找到
CnWHTML5中文学习网 - HTML5先行者学习网
CnWHTML5中文学习网 - HTML5先行者学习网
(责任编辑:)
推荐书籍
推荐资讯
关于HTML5先行者 - 联系我们 - 广告服务 - 友情链接 - 网站地图 - 版权声明 - 人才招聘 - 帮助