将 sharepoint .docx 文件传递​​到 Microsoft Office Word Web 应用程序

发布于 2024-11-25 14:31:45 字数 81 浏览 1 评论 0原文

我只是不知道该怎么做,我有完整的文件路径,但我不知道如何让 microsoft office word web 应用程序打开文件路径。有什么帮助吗?

I just can't figure out how to do it, I have a full file path, but I can't figure out how to get a the microsoft office word web app to open the filepath. Any help?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

真心难拥有 2024-12-02 14:31:45

您必须将 .docs 文件上传到 SharePoint 才能使用 MS Office Web Apps。请按照以下有关如何部署 Office Web Apps 的 TechNet 文章来验证安装。然后确保配置支持浏览器的文档的默认打开行为

You have to upload your .docs file to SharePoint in order to use MS Office Web Apps. Follow the following TechNet article on how to deploy Office Web Apps to verify the installation. Then make sure to configure the default open behavior for browser-enabled documents.

美人迟暮 2024-12-02 14:31:45

尝试以编程方式执行此操作

 /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');
}

Try this to do it programmatically

 /YOURWEB/_layouts/WordViewer.aspx?id= "here is query string (path to the document)"

or

<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');
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文