What causes the System.Web.HttpException with error code 0x80070057 on Page.Flush while debugging in VS2005? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T05:01:14Z http://stackoverflow.com/feeds/question/593048 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/593048/what-causes-the-system-web-httpexception-with-error-code-0x80070057-on-page-flush 1 What causes the System.Web.HttpException with error code 0x80070057 on Page.Flush while debugging in VS2005? Ishmael 2009-02-27T00:04:30Z 2009-10-12T20:09:48Z <p>Here is the complete error message:</p> <blockquote> <p>An exception of type 'System.Web.HttpException' occurred in System.Web.dll but was not handled in user code</p> <p>Additional information: The remote host closed the connection. The error code is 0x80070057.</p> </blockquote> <p>and the offending code:</p> <pre><code> char[] buffer = oPage.HTML.HTML.ToCharArray(); Page.Response.Write(buffer, 0, buffer.Length); Page.Response.Flush(); Page.Response.End(); </code></pre> <p>The oPage.HTML.HTML is a string in a custom page object used by our app. The exception triggers on Page.Flush() and appears to be benign -- I just hit "continue" and everything goes along fine. This never appears at run time.</p> <p>I have chased many, many Google hits down many rabbit holes and have found nothing. Visual Studio 2005, Vista Ultimate (IIS7).</p> http://stackoverflow.com/questions/593048/what-causes-the-system-web-httpexception-with-error-code-0x80070057-on-page-flush/1556594#1556594 2 Answer by Chris B. Behrens for What causes the System.Web.HttpException with error code 0x80070057 on Page.Flush while debugging in VS2005? Chris B. Behrens 2009-10-12T20:09:48Z 2009-10-12T20:09:48Z <p>I've been dealing with this same error for a while now, and my understanding is that when Flush is called, there must be a connection on the other end, otherwise, this error is thrown. It's easy to get into a "fire-and-forget" kind of model when writing web pages, but when the client disconnects (in this debugging case, you're the client), there's nowhere to flush <em>to</em>.</p> <p>There are two solutions I've found to this:</p> <ol> <li>Wrap Response.Flush and catch the exception.</li> <li>Check Response.IsClientConnected before you call flush.</li> </ol> <p>I'm not 100% sure about the second one...I'm still in the process of checking that one out.</p> <p>Good luck!</p>