Hello Team,
Throughout the application we are getting below error.On button click event, drop down selected index change event , check box changed event, text changed event , radio button checked change event(especially during post back of the page).
Error Msg: "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 class to Response.Write(),response filters,HttpModules, or server trace is enabled. Details : Error parsing near 'ect the following:"|e_ButtonImg" src="Im"."
We are using AjaxtoolKit 4.0 version. I suspect that this is causing related to update panel's partial rendering issue in IE9.
Note : i tried with below code inside page load event my issue resolved and it's working fine. Like wise i need to do for all server side changed event. instead of that is it possible to provide fix in web.config file ?
Code fix :
ScriptManager scriptManager = ScriptManager.GetCurrent(this.Page);
scriptManager.RegisterPostBackControl(this.btnSave);
Like wise i have to add code for all pages for remaining asp.net server controls. Could you please provide high priority on this issue and help us toresolve this issue in a generic way.
Thanks much.
Sara.