SOに関する他の回答を見て、これまでのところ得たものは次のとおりですが、それでもエラーが発生します
「要求されたサイトは利用できないか、見つかりません。後でもう一度やり直してください。」
注: これは、他のブラウザーおよび https を使用しない IE8 で機能します。
Response.ClearHeaders();
Response.Clear();
Response.AddHeader("Cache-Control", "no-store, no-cache");
Response.ContentType = "application/pdf";
Response.AddHeader("Content-Disposition",
"attachment; filename=" +
"Application.pdf");
Response.BinaryWrite(memoryStream.ToArray());
ApplicationInstance.CompleteRequest();