Reputation: 3508
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.
Upvotes: 1
Views: 734
Reputation: 3976
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.
Upvotes: 0
Reputation: 7856
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.
Upvotes: 1
Reputation:
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?
Upvotes: 1