web_get_int_property()的应用 Action() { int HttpRetCode; web_url("www.baidu.com", "URL=http://www.baidu.com/", "Resource=0", "RecContentType=text/html", "Referer=", "Snapshot=t1.inf", "Mode=HTML", LAST); HttpRetCode =web_get_int_property(HTTP_INFO_RETURN_CODE); if (HttpRetCode == 200) lr_log_message("请求成功!"); else lr_log_message("请求失败! "); return 0; }