ASP.NET AJAX and PageRequestManagerParserErrorException

asp.net

Has anyone run into this error message before when using a timer on an ASP.NET page to update a DataGrid every x seconds?

Searching google yielded this blog entry and many more but nothing that seems to apply to me yet.

The full text of the error message below:

Sys.WebForms.PageRequestManagerParserErrorException: The message received from the server could not be parsed. Common causes for this error are when the response is modified by calls to Response.Write(), response filters, HttpModules, or server trace is enabled.

Best Answer

Many issues can cause that error. It's usually a Response.Write call, but anything that modifies the response can cause it.

We probably won't be able to help you unless you post some pertinent code-behind.

Related Topic