首先要引用這個服務,http://www.webxml.com.cn/Webservices/WeatherWebService.asmx 添加服務和引用 >轉到 >高級 >添加WEB應用 >添加引用 到此OK。 1個text,1個button,2個lable private void btn_se ...
首先要引用這個服務,http://www.webxml.com.cn/Webservices/WeatherWebService.asmx
添加服務和引用---->轉到---->高級---->添加WEB應用---->添加引用 到此OK。 1個text,1個button,2個lable
private void btn_search_Click(object sender, EventArgs e)
{
cn.com.webxml.www.WeatherWebService w = new cn.com.webxml.www.WeatherWebService();
string[] s = new string[23];
string city = text_city.Text.Trim();
s = w.getWeatherbyCityName(city);
if(s[8]=="")
{
MessageBox.Show("暫不支持查詢的城市");
}
else
{
label_gaikuang.Text = s[1] + "" + s[6];
label_shikuang.Text = s[10];
MessageBox.Show(s[3]+"\n\r"+s[4]+s[5]+s[7]+s[8]+s[9]);
}
}
w.getWeatherbyCityName(city); 返回的是一個以為數組,有興趣的話可以看看裡面都是什麼內容;