How to fix error: The message received from the server could not be parsed

前端 未结 10 1607
余生分开走
余生分开走 2020-12-15 21:30

We have a Sharepoint solution that uses AJAX. The button that triggers this is inside an update panel.

One of the things that we do is generate a MS Word document, t

10条回答
  •  爱一瞬间的悲伤
    2020-12-15 21:52

    Try adding script manager in your page load, like this:

    ((ScriptManager)Master.FindControl("ScriptManager1")).RegisterPostBackControl(btnExport);
    

提交回复
热议问题