Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 ASP.Net 来编写 Web 应用程序,并且在服务器上有许多文件。
我希望用户单击按钮,在 ms Word 客户端的服务器中打开 docx 文件。并在 ms Word 客户端中由用户编辑文本并将文件(文本)保存在服务器中。
请帮我。
将 Word 文档放在网络共享上,然后链接到它们 ( <a href="file://\\server\share\document.docx">Some document</a>)。用户将在 Word 中打开它们,Word 会将它们保存到同一位置。
<a href="file://\\server\share\document.docx">Some document</a>
我建议在文件服务器上启用卷影复制,以确保您拥有文件的早期版本,以防用户意外删除或损坏文件。
Microsoft 认可的“适当”解决方案是部署 SharePoint,但您的组织需要付出巨大的代价。它包括内置的基于 Web 的 Office 应用程序。