本帖最后由 .個朲綉√ 于 2010-9-11 15:22 编辑
$oHTTP = ObjCreate("winhttp.winhttprequest.5.1")
$sDataToSend = "objWebUserVO.ipAddr=192.168.0.2&requestFlag=indexfailure&loginType=10&objWebUserVO.account=" & $Num & "&pswType=1&objWebUserVO.accountpsw=" & $Pass & "&randomId=" & $Code & "&button="
$oHTTP.Open("POST", "http://sh.ct10000.com/v3/zq_dev_level_login.do?method=login", False)
$oHTTP.setRequestHeader("Content-Type", "application/x-www-form-urlencoded")
$oHTTP.setRequestHeader("Referer", "http://sh.ct10000.com/v3/crm_id_login.do")
$oHTTP.Send($sDataToSend)
$sDataToSend = "objWebUserVO.ipAddr=192.168.0.2&requestFlag=indexfailure&loginType=10&objWebUserVO.account="& $Num & " &pswType=1&objWebUserVO.accountpsw=" & $Pass & "&randomId=" & $Code & "&button="
我想问一下这句代码中的数据(不同颜色),有没有先后顺序,这是别人写的代码,我自己也在网站上获取了这些数据,不知道这些数据有没有先后顺序的规定。
如果有的话,那这个先后顺序怎么确定呢?我自己在网上获取这个Post也看不出和代码的顺序有什么关系。
|