Open/handle Word documents like SharePoint

后端 未结 2 1331
有刺的猬
有刺的猬 2021-01-15 19:14

Could anyone point me in the right direction when it comes to handling Word documents (.docx) on the server using asp.net.

I know I can write to and read the .docx d

相关标签:
2条回答
  • 2021-01-15 19:20

    First: About Sharepoint & Word: Sharepoint is using a protocol called WebDAV to provide this.

    Afaik is WebDAV a standard protocol included with IIS (Install Windows Components). Windows can talk with WebDAV like it's some mounted drive, and therefore Word can handle .doc files that are served from there. To communicate with the WebDAV instance from ASP.NET you can use http://www.independentsoft.de/webdav/index.html.

    I guess redirecting the user to the Word doc on the WebDAV server should get it working for the user, but I'm not sure about that. Never actually implemented a WebDAV solution.


    Good editor: If you have a small set of users, you should have a look at xstandard, I found that by far the coolest rich text editor available. Yet it works with Java/ActiveX, so your users should install the component at first, but it supports image drag-drop etc. I have never seen a native in-browser editor that gives me a good experience (Telerik came closest 2 years ago).

    0 讨论(0)
  • 2021-01-15 19:24

    You can integrate with the Zoho writer api http://writer.zoho.com/home?serviceurl=/index.do

    0 讨论(0)
提交回复
热议问题