PageRequestManagerTimeoutException:服务器请求超时 此为异步回发超时错误
解决方案1:web.config中的
<httpRuntime executionTimeout="600"/>
解决方案2:改页面ScriptManager控件的AsyncPostBackTimeOut属性,缺省为90
<asp:ScriptManager AsyncPostBackTimeout="90" />
解决方案三:看看你的session在web.config中的配置
如果是: <sessionState mode="StateServer" stateConnectionString="tcpip=127.0.0.1:42424" sqlConnectionString="data source=127.0.0.1;Trusted_Connection=yes" cookieless="false" timeout="60"> 这个状态下的,那就是这个东西影响的。
解决方案四:不让对话框显示
IE浏览器中工具—》Internet选项-》高级-》禁用脚本提示去掉/http友好显示设置一下