How to open Pdf in new browser window

My webpage creates a pdf and opens it in the same browser window.

How kan I open the pdf in a new window?

Ps. Is there a weay that we can save the pdf in the same file explorer way as a word file?

Hi,

To open the pdf in a separate window use the following statement:

pdf1.Save("Test.Pdf", Aspose.Pdf.SaveType.OpenInAcrobat, this.Response);

Thanks.