webservice 服务地址: http://www.webxml.com.cn/WebServices/WeatherWebService.asmx
在vs.net2010 中新建项目,web项目。
在添加 webservice 引用的时候,一定要选 “添加服务引用” ,然后,写上命名空间 webweather。这样才是对 webservice 的调用。
然后,在 .CS 中调用
webweather.WeatherWebServiceSoapClient w = new webweather.WeatherWebServiceSoapClient("WeatherWebServiceSoap");
string[] s = new string[23];
string c = "吉林";
s = w.getWeatherbyCityName(c);
if (s[8] == "")
{
Response.Write("暂时不支持您查询的城市");
}
else
{
TextBox1.Text = s[0];
TextBox2.Text = s[1];
TextBox3.Text = s[2];
TextBox4.Text = s[4];
}