I have loaded a word document from FileSystem. I update the document. Now i want to Save the documnet. There is no save method that takes NO parameter, all the parameter asks either for new FileName or stream. How do i save the currently open document to itself with out creating new document.
Aspose.Words.Document document = new Aspose.Words.Document(stream);
document.Range.Replace("[Your Name]", "James Smith", true, true);
document.Range.Replace("[Street Address]", "4444 Test Aven", true, true);
document.Range.Replace("[City, ST ZIP Code]", "San Jose, CA 22222", true, true);
document.Save(); //????There no save method without any parameter