InterviewSolution
| 1. |
Why I Couldn't Finish A Long Conversation In An Updatepanel In An Ajax.asp.net Project? |
|
Answer» If you KEEP getting a javascript alert window giving the error message "Sys.WebForms.PageReqeustManagerParserErrorExcpetion: 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." you need to add the following setting into you system.web SECTION in your web.config <pages enableViewStateMac="FALSE" viewStateEncryptionMode="Never" enableEventValidation="false"> If you keep getting a javascript alert window giving the error message "Sys.WebForms.PageReqeustManagerParserErrorExcpetion: 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." you need to add the following setting into you system.web section in your web.config <pages enableViewStateMac="false" viewStateEncryptionMode="Never" enableEventValidation="false"> |
|