如何用url中给webservice传递参数
[WebMethod]
public string HelloWorld( string id ,string name )
{
return id;
}
然后 http://localhost/WebApplication5/Service1.asmx/HelloWorld?id=XXX&name=YYYY
在webconfig里面加上
<webServices>
<protocols>
<add name="HttpSoap"/>
<add name="HttpPost"/>
<add name="HttpGet"/>
<add name="Documentation"/>
</protocols>
</webServices>