R – How to save a Word document back to the main server from an ASP.NET intranet

asp.netms-word

I have a ASP.NET intranet application that has a document library section. The user can click on a link to a MS-Word document that resides on the server and can then edit the document if required within the browser (IE).

The problem is that when they come to save their changes it needs to write it back to the server but instead wants to save it on their local system.

Any ideas how I can get it to save back to the main server ?

Thanks in advance.

Best Answer

The link to the word document can be a file:// url.

Using this method the user can open the file directly on the share.

Related Topic