zipファイルをデータベースに保存して、このファイルを取得する必要がある古いアプリケーションを継承しました。 Firefoxはうまく動作しますが、私はzipファイルを開くことができ、その中の各ファイルは正常です。私はIE7でそれを実行すると、私は次のエラーが発生します。IE7でzipファイルを書き込むことができません
Internet Explorerは、localhostからProductContentFormImage.aspxをダウンロードできません。
Internet Explorerはこのインターネットサイトを開けませんでした。要求されたサイトは利用できないか、見つからないかのいずれかです。後でもう一度お試しください。
私は以下のコードを使用しています。
byte[] content = (byte[])Session["contentBinary"];
Response.ClearContent();
Response.ClearHeaders();
Response.Clear();
Response.Buffer = true;
Response.Expires = 0;
Response.ContentType = "application/zip";
Response.AddHeader("Content-Length", content.Length.ToString());
Response.AddHeader("Content-Disposition", "attachment; filename=content.zip");
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.BinaryWrite(content);
Response.End();