|
4#
楼主 |
发表于 2012-3-7 12:01:12
|
只看该作者
要关联的代码是
"Name=userSession", "Value=107818.350749291fftfQAzptVzzzzzHDDcHfptDif", ENDITEM,
第一次写的关联代码是
web_reg_save_param("session",
"LB=userSession Value=",
"RB=>",
"Ord=1",
"Search=Body",
LAST);
"Name={session}", ENDITEM,
回放错误:
Action.c(23): Error -27212: "Name" and/or "Value" missing before the "ENDITEM" argument (number 10) [MsgId: MERR-27212]
Action.c(23): Warning -26379: Pending web_reg_save_param/reg_find/create_html_param[_ex] request(s) are deleted and will be handled as "not found" [MsgId: MWAR-26379]
Action.c(23): Error -26377: No match found for the requested parameter "session". Check whether the requested boundaries exist in the response data. Also, if the data you want to save exceeds 1024 bytes, use web_set_max_html_param_len to increase the parameter size [MsgId: MERR-26377]
Action.c(23): Error -26374: The above "not found" error(s) may be explained by header and body byte counts being 0 and 0, respectively. [MsgId: MERR-26374]
Action.c(23): web_submit_data("login.pl") highest severity level was "ERROR", 0 body bytes, 0 header bytes [MsgId: MMSG-26388]
第二次写的代码为
web_reg_save_param("session",
"LB=Name=userSession\",\"Value=",
"RB=>",
"Ord=1",
"Search=Body",
LAST);
"Name=userSession","Value={session}"
回放错误:
Action.c(16): Registering web_reg_save_param was successful [MsgId: MMSG-26390]
Action.c(23): Error -26377: No match found for the requested parameter "session". Check whether the requested boundaries exist in the response data. Also, if the data you want to save exceeds 1024 bytes, use web_set_max_html_param_len to increase the parameter size [MsgId: MERR-26377]
Action.c(23): web_submit_data("login.pl") highest severity level was "ERROR", 795 body bytes, 225 header bytes [MsgId: MMSG-26388]
正确的写法应该是怎么样的?
还有那个右边界值RB=> 中的 > 是什么意思呢?在脚本上不应该是 "
|
|