</head>
<body>
<form id="form1" runat="server">
<div>
<script>
//--不加这个报错找不道对象
AjaxPro.Request.prototype.timeout=function()
{
try { //--捕获下哈哈- -这样就不用找 code.js
this.duration = new Date().getTime() - this.__start;
var r = this.onTimeout(this.duration, this);
if(typeof r == "undefined" || r != false) {
this.abort();
} else {
this.timeoutTimer = setTimeout(this.timeout.bind(this),AjaxPro.timeoutPeriod);
}
} catch(error)
{
// Statements that execute in the event of an exception
} finally
{
// Statements that execute afterward either way
}
}
</script>