chrome (failed) net::ERR_INCOMPLETE_CHUNKED_ENCODING ashxロード画像

707 ワード

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()後はすべて正常です.