错误: Sys.WebForms.PageRequestManagerServerErrorException: 只能在执行 Render() 的过程中调用 RegisterForEventValidation;

今天在Ajax的UpdatePanel下实现 Export Excel或是Word时,它即出现error:

行: 4723
错误: Sys.WebForms.PageRequestManagerServerErrorException: 只能在执行 Render() 的过程中调用 RegisterForEventValidation;

解决的方法,添加下面红色code即可: 

</ContentTemplate> 
<Triggers>
            <asp:PostBackTrigger ControlID="btnExportWord" />
            <asp:PostBackTrigger ControlID="btnExportExcel" />
 </Triggers>
 </asp:UpdatePanel>

原文地址:https://www.cnblogs.com/insus/p/1450182.html