返回的错误信息:
Microsoft VBScript 编译器错误 错误 '800a03f6'
缺少 'End'
/iisHelp/common/500-100.asp,行242
Connector 错误 '800a1527'
Connector:Connection time out. HRESULT=0x800A1527 - Client:An unanticipated error occurred during the processing of this request. HRESULT=0x800A1527 - Client:Sending the Soap message failed or no recognizable response was received HRESULT=0x800A1527 - Client:Unspecified client error. HRESULT=0x800A1527
/websocket/testt.asp,行19
解决办法:
出现那个错误之后,网页就返回了,后面的代码不在继续执行,
加
on error resume next
然后
if err<>0 then 就行了
end if