4
取得zip文件,當我嘗試下載由Ionic.Zip.dll
從一個asp.net C#Web表單應用程序作出這樣一個zip文件:失敗 - 網絡錯誤下載由Ionic.Zip.dll
zip.AddEntry("filename", arraybyte);
Response.Clear();
Response.BufferOutput = false;
Response.ContentType = "application/zip";
Response.AddHeader("content-disposition", "filename=SuppliersDocuments.zip");
zip.Save(Response.OutputStream);
Response.Close();
,但我得到Failed - network error
這樣的:
錯誤只發生在鉻,它正常工作在其他瀏覽器。 我的本地主機上沒有發生錯誤,它只發生在主服務器上。
如果有人能夠解釋這個問題的解決方案,這將是非常有益的。