VBscript Asynchronous XMLHttp Call

前端 未结 1 559
没有蜡笔的小新
没有蜡笔的小新 2021-01-21 13:26

for a project I\'m working on I\'m attempting to do a Asynchronous XMLHTTP Call. I\'m using the following code:

soapmessage = _
\"

        
相关标签:
1条回答
  • 2021-01-21 13:52

    It needs a function reference which you can get using the GetRef() function.

    xmlhttp.OnReadyStateChange = GetRef("doHttpOnReadyStateChange")
    

    Dirk.R: Would like to add that while this is the fix. Keep in mind that the order of the statements also matters!

    0 讨论(0)
提交回复
热议问题