我只是不知道该怎么做,我有一个完整的文件路径,但我不知道如何让 microsoft office word web 应用程序打开文件路径。有什么帮助吗?
问问题
2162 次
2 回答
1
您必须将 .docs 文件上传到 SharePoint 才能使用 MS Office Web Apps。请按照以下有关如何部署 Office Web Apps的 TechNet 文章来验证安装。然后确保为启用浏览器的文档配置默认打开行为。
于 2011-07-21T20:14:39.100 回答
0
尝试以编程方式执行此操作
/YOURWEB/_layouts/WordViewer.aspx?id= "here is query string (path to the document)"
或者
<SharePoint:MenuItemTemplate ID="submit1" runat="server" Text="open" ImageUrl="/_layouts/images/OpeninBrowser.gif" ClientOnClickScript="OpenWebApps('%Url%'); return false;">
function OpenWebApps(url) {
var ext = url.substr(url.lastIndexOf('.') + 1); // here define the extension
if (ext == 'docx')
window.open('<%= Web.Url%>'+"/_layouts/WordViewer.aspx?id="+encodeURI(url));
else
alert('Cannot open document with this extension');
}
于 2012-07-27T09:28:49.080 回答