 Action()...{
int HttpRetCode;
web_url("www.eis", "URL=http://www.eis/", "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;
}
|