|
班主,保存后的变量怎么来用啊?
我在脚本中用
web_reg_save_param("JSID","LB=Set-Cookie: JSESSIONID=","RB=;",LAST);
存成变量"JSID"了,后面的脚本中怎么来用呢
如,我的JSID是一个每次都变化的sessionID,我要把它存cookie中,用下面的语句
web_add_cookie("JSESSIONID={JSID}; DOMAIN=xxx.com.cn");
在run的时候出现这些错误:
Action1.c(12): Error: No match found for the requested parameter "JSID". If the data you want to save exceeds 256 bytes, use web_set_max_html_param_len to increase the parameter size
Action1.c(12): Error: The above "not found" error(s) may be explained by header and body byte counts being 93 and 0, respectively.
Action1.c(12): web_url highest severity level was "ERROR", 0 body bytes, 93 header bytes
上面的错误代表什么,并请教一下,保存变量的用法,谢谢!! |
|