页面使用了UpdatePanel,但由于操作耗费时间较长,出现了Sys.WebForms.PageRequestManagerTimeoutException:
The server request timed out 脚本错误。 解决办法: 设置ScriptManager 的AsyncPostBackTimeout
<asp:scriptmanager id="ScriptManager1" runat="server" asyncpostbacktimeout="300"></asp:scriptmanager>
AsyncPostBackTimeout 默认为90,最大为 600 (秒)
我擦,时间可够短的啊!