Using Office Web Apps, Can you open a document via webdav?

二次信任 提交于 2019-12-01 11:15:36

Yes, you can launch editing of MS Office documents from a web browser, using the sharepoint dll available in IE:

Eg

Set EditDocumentButton = CreateObject("SharePoint.OpenDocuments.3")
strDocument = 'http://localhost:8080' + strDocument; 
EditDocumentButton.EditDocument(strDocument)

If your server is running java you can use Milton (http://milton.io) to integrate directly into your business app and edit the document in place.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!