How to save pdf to explorer instead of opening in browser?

How can I store a pdf in explorer instead of open it in the browser?

I now have this code:

pdf.Save("MyDocument.pdf", Aspose.Pdf.SaveType.OpenInBrowser, Response);

Hi,

Please use the following statement:

pdf.Save("MyDocument.pdf", Aspose.Pdf.SaveType.OpenInAcrobat, Response);

Thanks.