Byte[] myBytes = GetReportBytes(); HttpContext.Current.Response.ClearContent(); HttpContext.Current.Response.AppendHeader("content-length",myBytes.Length.ToString()); HttpContext.Current.Response.AppendHeader("content-Disposition","attachment;filename=" + this.ReportFileName + GetReportExtension()); HttpContext.Current.Response.ContentType = GetApplicationContentType(); HttpContext.Current.Response.BinaryWrite(myBytes); HttpContext.Current.Response.Flush(); HttpContext.Current.Response.Close(); //CERT FIX //HttpContext.Current.Response.End();
解决方法
Response.End()将在此时停止页面执行/呈现.将不会运行Response.End()之后的代码.响应在该点终止,没有进一步的输出添加到流.
Response.Close()类似于Response.End(),但允许在调用代码后执行代码(但在页面响应中不能再发送输出).
Response.Flush()将任何剩余的响应项发送到页面.
Response.Close sends a reset packet to
the client and using it in anything
other than error condition will lead
to all sorts of problems – eg,if you
are talking to a client with enough
latency,the reset packet can cause
any other response data buffered on
the server,client or somewhere in
between to be dropped.In this particular case,compression
involves looking for common patterns
within the response and some amount of
response has to be buffered by the
compression code to increase the
chance of finding longer repeating
patterns – this part that is buffered
cannot be sent to the client once you
do Response.Close().In short,do not use Response.Close().