我正在将文件下载为zip扩展名,但是下载时没有扩展名。
Response.AddHeader("Content-Disposition", "attachment; filename="ABC.zip");
答案 0 :(得分:0)
您发送了正确的内容类型吗?
Response.ContentType = "application/octet-stream";
还注意到您可能有一个错误,应该是以下内容...
Response.AddHeader("Content-Disposition", "attachment; filename=ABC.zip");