关于如何获取关联参数的值
本帖最后由 twinsczl 于 2010-12-9 13:15 编辑web_reg_save_param("test",
"LB=is",
"RB=",
"Ord=1",
"Search=Body",
LAST);
1、test参数的值,如何用lr_output_message输出
2、如何把test的值,保存在一个自定义的char变量中 lr_output_message(lr_eval_string("{参数名}")); 回复 1# twinsczl
lr_save_string这个函数就可以了 char *test_str;
web_reg_save_param("test",
"LB=is",
"RB=",
"Ord=1",
"Search=Body",
LAST);
test_str = lr_eval_string("{test}");
lr_output_message(test_str);
页:
[1]