有时候在操作大量数据的时候会超时报这个错:
Sys.WebForms.PageRequestManagerTimeoutException:The server request timed out
那只要在两个地方做一下修改即可
第一
<configuration>
<system.web>
<httpRuntime executionTimeout="36000" />
</system.web>
</configuration>
第二
在ScriptManager1在加一个超时限制即可