Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server."

前端 未结 27 2578
遇见更好的自我
遇见更好的自我 2020-12-13 18:03

I have couple of update panels and jquery tabs on page. And also I am loading couple user controls on update panels. After user waited for couple of minutes (not checked the

27条回答
  •  自闭症患者
    2020-12-13 18:11

    I had this issue and I spent hours trying to fix it.

    The solution ticked as answered will not fix the error only handle it.

    The best approach is to check the IIS log files and the error should be there. It appears that the update panel encapsulates the real error and outputs it as a 'javascript error'.

    For instance my error was that I forgot to make a class [Serializable]. Although this worked fine locally it did not work when deployed on the server.

提交回复
热议问题