Saving the generated document on the Server

Hello,

I am evaluating ASPOSE word. How can I save the generated Word Document on the server. I can send it directly to the browser, but I want to save the document on the server. Can you provide me with the code or point me in the right direction

Thanks

maximus_vj

Yes, you can. Here is an example:

Document doc = new Document();

// ... make your modifications here

doc.Save(Server.MapPath("test.doc"));