chrome (failed) net::ERR_INCOMPLETE_CHUNKED_ENCODING
ashx文件加載圖片的方法,發現在chrome瀏覽器里面出了異常:
(failed) net::ERR_INCOMPLETE_CHUNKED_ENCODING
ftpStream.Read(buffer, 0, bufferSize); HttpContext.Current.Response.BinaryWrite(buffer); HttpContext.Current.Response.Flush(); ftpStream.Close(); HttpContext.Current.Response.Close();
是Response.Close()引起chrome的chunked解碼失敗,其它瀏覽器沒有這個異常
去掉Response.Close()后一切正常。
