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

2024年11月14日 14:55
有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):

找个例子就会了。