|
char str[] = "c:\\mercury\\lrun\\bin\\wlrun.exe";
为什么可以
lr_save_string( lr_eval_string(str), "word");
web_submit_data("resp.jsp",
"Action=http://localhost:8083/mytest/resp.jsp",
"Method=POST",
"RecContentType=text/html",
"Referer=http://localhost:8083/mytest/index.jsp",
"Snapshot=t2.inf",
"Mode=HTML",
ITEMDATA,
"Name=t1", "Value={word}", ENDITEM,
"Name=b1", "Value=提交", ENDITEM,
LAST);
而
web_submit_data("resp.jsp",
"Action=http://localhost:8083/mytest/resp.jsp",
"Method=POST",
"RecContentType=text/html",
"Referer=http://localhost:8083/mytest/index.jsp",
"Snapshot=t2.inf",
"Mode=HTML",
ITEMDATA,
"Name=t1", "Value= lr_eval_string(str)", ENDITEM,
"Name=b1", "Value=提交", ENDITEM,
LAST);
不可以运行?
[ 本帖最后由 fish_yy 于 2006-9-25 12:16 编辑 ] |
|