返回的錯誤信息:
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