|
我录了一段填写参数的脚本语言并把其中的一个字符串修改为变量的形式,编译的时候没错,但运行的时候出错。
错误描述如下:
ction.c(112): Error -27225: The ""Name=comment_content", "Value=如果您的浏览器没有自动跳转,请点击这里_3北京"" argument (number 4) is not recognized within "ITEMDATA" [MsgId: MERR-27225]
Action.c(112): web_submit_form("cb_comment_save.php_3") highest severity level was "ERROR", 0 body bytes, 0 header bytes [MsgId: MMSG-26388]
代码段如下:
char buf[200] ;
lr_think_time(10);
strcpy(buf,"\"Name=comment_content\", \"Value=");
strcat(buf,"如果您的浏览器没有自动跳转,请点击这里_3北京邮电大学\"");
lr_output_message(buf);
web_submit_form("cb_comment_save.php_3",
"Snapshot=t9.inf",
ITEMDATA,
buf , ENDITEM, //运行此函数的时候出错。
LAST);
还请高人帮忙啊 |
|