码迷,mamicode.com
首页 > 其他好文 > 详细

IE下载时提示无法下载,重试后成功

时间:2016-03-30 15:00:40      阅读:834      评论:0      收藏:0      [点我收藏+]

标签:

  // Add Excel as content type and attachment
  Response.ContentType = “application/vnd.ms-excel”;
  Response.AddHeader(“Content-Disposition”, “attachment; filename=” + binTarget);

  mStream.Position = 0;
  mStream.WriteTo(Response.OutputStream);
  Response.Flush();

  // BAD PATTERN: DO NOT USE. 
  // See http://blogs.msdn.com/b/aspnetue/archive/2010/05/25/response-end-response-close-and-how-customer-feedback-helps-us-improve-msdn-documentation.aspx
  Response.Close();           

IE10以上会严格校验Content-Length和Transfer-Encoding,如果武断使用 Response.Close();会导致直接切断,浏览器到服务器端的套接字连接,会产生数据到丢失,而导致实际传输长度和指定不一致,clicks Retry后IE将不在严格校验,所以重试之后正常下载,低端到IE版本没有严格校验到问题如:IE8。所以将Response.Close();该为Response.End();问题迎刃而解!!!

IE下载时提示无法下载,重试后成功

标签:

原文地址:http://www.cnblogs.com/zzq-include/p/5336913.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!