Web Service,怎么通过网页的超链接传递参数?

2024-11-14 14:55:15
推荐回答(4个)
回答1:

URL传值,就是通过GET获取值
比如你的例子可以这样写
xxxx/WebService1.asmx?op=Re&S=1
WebService1.asmx文件就有2个参数一个是op值为Re 另一个是S值为1
PHP获取的写法是
$op=$_GET['op'];
$S=$_GET['S'];
.net的不懂,便思路应该是一样的

回答2:

在web.config里添加以下代码














回答3:

写个S的get方法接收参数
private String S;

public String getS() {
return S;
}

回答4:

找个例子就会了。