Already looked at this: Sys.WebForms.PageRequestManagerParserErrorException - what it is and how to avoid it
The problem is that this only happens in my dev block. Two other developers are fine.
It is consistent and reproducible - I tried to delete temporary Internet files, deleted the obj and bin files and rebooted.
The answer is clearly truncated when I look at it in the debugger, when it gets into an error.
Where else do I need to check to clean / clean?
The error I see in the code is:
Microsoft JScript runtime error: Sys.WebForms.PageRequestManagerParserErrorException: messages received from the server cannot be analyzed. Common causes of this error are when the response is modified by calling Response.Write (), response filters, HttpModules, or server tracing. Details: Error parsing next to ' </tr> .
_endPostBack: function PageRequestManager$_endPostBack(error, executor, data) { if (this._request === executor.get_webRequest()) { this._processingRequest = false; this._additionalInput = null; this._request = null; } var eventArgs = new Sys.WebForms.EndRequestEventArgs(error, data ? data.dataItems : {}, executor); Sys.Observer.raiseEvent(this, "endRequest", eventArgs); if (error && !eventArgs.get_errorHandled()) { throw error;
This is during the Ajax postback.
No calls to Response.Write.
I am using Cassini / VS 2010 Development Server, how do I know if there are filters?
Ditto
Server Trace Not Enabled
No calls to Server.Transfer
In firebug, I see that the response to the POST is truncated. The problem occurs in Firefox or IE, and I am a debugger in VS or not.
The problem will disappear if I switch to IIS Express in Visual Studio and then return when I return to the ASP.NET development server.