使用完畢要記得關(guān)閉錯誤捕獲器on error goto 0 語法如下: ======================================================= on error resume next '打開錯誤捕獲,以下錯誤語句將被跳過, 同時內(nèi)部對象err將紀錄最后一個觸發(fā)的錯誤信息 on error goto 0 '關(guān)閉錯誤捕獲 ======================================================= 關(guān)于err對象: if Err.number>0 then response.write Err.description Err.clear '錯誤被手工處理后要記得清除err對象的內(nèi)容 response.end end if