Sys.WebForms.PageRequestManagerServerErrorException: (status code was 12029)

 

Sys.WebForms.PageRequestManagerServerErrorException

 

描述:

An exception has occured on the server:

Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 1202 9

概述:出现此错误的原因一般是:服务器不可达。例如网络没有连接好,服务器故障等等,而不是程序出错。状态代码的含义为:

12029: ERROR_INTERNET_CANNOT_CONNECT   The attempt to connect to the server failed.12007: ERROR_INTERNET_NAME_NOT_RESOLVED  The server name could not be resolved.

 

在endRequest的事件处理器中捕捉此状态代码:

 参考:http://forums.asp.net/t/1129622.aspx

Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler);
function EndRequestHandler(sender, args)
{
   
if (args.get_error() != undefined)
   
{
       
if ((args.get_response().get_statusCode() == '12007'|| (args.get_response().get_statusCode() == '12029'))
       
{
        
//Show a Message like 'Please make sure you are connected to internet';
        alert('Please make sure you are connected to internet');
        args.set_errorHandled(
true); 
       }

   }

}

解决方法:
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 6
    评论
评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值