I have like this.
Document doc1 = new Document("test1.doc");
Document doc2 = new Document("test2.doc");
I am displaying these docs in test.aspx page.
I need to open second document while first document is open from the same aspx page.
Can we do like this?
doc1.Save("output1.doc", SaveFormat.Doc, Aspose.Words.SaveType.OpenInBrowser, this.Response);
doc2.Save("output2.doc", SaveFormat.Doc, Aspose.Words.SaveType.OpenInBrowser, this.Response);
Thanks.