求助:程序错误:OLE IDispath 异常代码0出自msxml3.dll:系统无法找到指定的资源。
s = "alltel=13500000000&username=用户名&userpwd=密码&method=send&nei=123456"oXml = NewObject("Microsoft.XmlHttp")
oXml.open("post", "http://www., .F.)
oXml.send( s )
? oXml.responseText
运行上面这段程序时,如果网络不稳定或网断,就会弹出“程序错误:OLE IDispath 异常代码0出自msxml3.dll:系统无法找到指定的资源。”的对话框,怎样才能让这个对话框不出现,而是每隔1秒重新尝试连接,直到服务端返回信息。
s = "alltel=13500000000&username=用户名&userpwd=密码&method=send&nei=123456"
oXml = NewObject("Microsoft.XmlHttp")
oXml.open("post", "http://www., .F.)
DO WHILE “条件”
WAIT TIMEOUT 1
oXml.open("post", "http://www., .F.)
ENDDO
oXml.send( s )
? oXml.responseText
这个“条件”应该是什么才能达到目的呢?