|
把我写的一个例子给你
jsp页面:
<%@ page contentType="text/html; charset=GBK" %>
<html>
<body>
<h1>hello world.</h1>
<hr>
<h2><%out.print("hello yuy");%></h2>
</body>
</html>
lr脚本:
//需要在链接的页面之前定义需保存的关联变量
web_reg_save_param("mystr",
"LB=<h1>",
"RB=</h1>",
"SaveOffset=0",
"SaveLen=12",
"NotFound=ERROR",
"Search=Body",
LAST);
web_url("mytest",
"URL=http://localhost:8080/mytest",
"Resource=0",
"RecContentType=text/html",
"Referer=",
"Snapshot=t1.inf",
"Mode=HTML",
LAST);
lr_output_message("%s", lr_eval_string("{mystr}")); //hello world.
lr_output_message("%s", "{mystr}"); //取不到值 |
|