http协议获取信息 提示不支持的格式 是什么原因?
If LenB(http.responseBody) = 0 排错的时候到这里 http.responseBody = 0 是什么原因?没有取到信息吗? --------------------编程问答-------------------- 能描述的详细点吗?估计是你的页面提交后服务没有正确的响应所以结果为0 --------------------编程问答--------------------
If Err.Number Then
MOError Err.Number, Err.Description, strMethod, strURL, strData
Err.Clear
ElseIf http.status = 200 Then
If LenB(http.responseBody) = 0 Then
MOError vbObjectError + 1, "非WAP页面", strMethod, strURL, strData
Else
Echo BytesConvert(http.responseBody, GetCharset(http.getOption(0)))
End If
Echo "<!--mo.target:" & http.getOption(-1) & "-->"
Else
MOError http.status, http.responseText, strMethod, strURL, strData
End If
Set http = Nothing
这是那部分的代码 http.status = 200 这部走了 不就是 ok吗
补充:.NET技术 , ASP.NET