This is the code for downloading the file.
System.IO.FileStream fs = new System.IO.FileStream(Path+\"\\\\\"+fileName, System.IO.FileMode.Open, System.IO.File
Use this code. This works like a champ.
Process process = new Process(); process.StartInfo.UseShellExecute = true; process.StartInfo.FileName = outputPdfFile; process.Start();