在 Web 应用程序中无缝编辑文档
我们有一个Web应用程序,其中涉及很多文档。 在典型的用例中,将从我们的 Web 应用程序生成文档。 用户将生成的文档下载到本地文件系统并进行修改。 完成此工作后,用户将修改后的文档上传回 Web 应用程序。
我需要一种更简单的方法来使用 Web 应用程序和文档。 应该是无缝的。 也许有一种方法可以在类似于共享点文档列表的 webdav 文件夹中编辑文档并将其存储回 Web 应用程序中,而无需在本地文件系统上存储临时文档。
但也许,还有更好的想法。
PS:我不想使用 Active X 控件,它必须是一个 Web 应用程序:-)
谢谢您的帮助。
We have a web application, which involves a lot of documents. In a typical use case, a document will be generated from our web application. The user download the generated document to the local file system and modify it. After this work, the user upload the modified document back to the web application.
I need an easier way, to work with the web application and documents. It should be seamlessly. Maybe, there is a way, to edit the document in a webdav folder similar a sharepoint document list and store it right back in the web application, without storing a temporary document on the local file system.
But maybe, there are better ideas.
P.S: I don't want to use active x controls and it must be a webapplication :-)
Thank you for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为如果没有插件这是不可能的。 我以前用过activex,也许可以写一个跨平台的java小程序?
I don't think this is possible without a plugin. I've used activex in the past, maybe it would be possible to write a cross-platform java applet?
WebDav 可能是一条出路。
我想您会在服务器的文件夹中创建文件,然后将用户发送到那里,他们可以在其中编辑和保存该文件。
缺点是:
另一种选择是将文档生成为 HTML,然后使用 HTML 编辑器(例如 FckEditor 或 FreeTextBox)让用户在线编辑文档。
WebDav might be the way to go.
I'd imagine you'd create the file in a folder in the server, then send the user to there, where they could edit and save it.
The drawbacks are:
An other option would be to generate your documents as HTML then use an HTML Editor (such as FckEditor or FreeTextBox) to let users edit the document online.
您可以使用谷歌文档来编辑文档。 这是免费的,您也可以在您的网络应用程序中使用它。 你只需要引用 dll 即可。
请参阅以下链接了解更多详情。
http://code.google.com/apis/documents/docs/2.0 /developers_guide_dotnet.html
您可以从此处下载 Google 数据 API。
http://code.google.com/p/google-gdata/downloads/list谢谢
。
You can use google docs that give the facility of editing the documents. This is free and you can use it in your web application also. you just have to reference the dlls.
Please see the following link for more details.
http://code.google.com/apis/documents/docs/2.0/developers_guide_dotnet.html
You can download the google data api from here.
http://code.google.com/p/google-gdata/downloads/list
Thanks.