查资料看了2种解决方法: 1.通过办公软件dll转换,用flans去看 2.通过Aspose转换成pdf格式,在用js前台读pdf(我用的pdf.js) 今天我解决的就是WORD/EXCEL/PPT 转化成 PDF ,然后 PDF在线阅读 1.WORD/PPT/EXCEL转PPT类(很简单的) using Aspose.Words; using Aspose.Cells; using Aspose.Slides; /// <summary> /// Office2Pdf 将Office文档转化…
在部署Word/Excel到服务器的时候,经常会碰到权限问题.例如; Retrieving the COM class factory for component with CLSID {00024500-0000-0000-C000-000000000046} failed due to the following error: 8000401a 因为配置类型不正确,系统无法开始服务器进程.请检查用户名和密码. (Exception from HRESULT: 0x8000401A). …
[MVC] 页面导出 WORD, EXCEL 前端 js function output() { var para = new Object(); para.html = getHtml("outputData"); para.type = "excel"; getAjaxText("/Test/SaveData", para, function (data) { if (data != "") { openWindow(st…