• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

在asp.net中调用天气预报的webService

原作者: [db:作者] 来自: [db:来源] 收藏 邀请
 WeatherWebServiceSoap w = new WeatherWebServiceSoapClient("WeatherWebServiceSoap");
    protected void Page_Load(object sender, EventArgs e)
    {
      
        BindPro();
       // BindCity();
    }
    protected void BindPro()
    {
        string[] pro = w.getSupportProvince();
        for (int i = 0; i <pro.Length; i++)
        {
            DropDownList1.Items.Add(new ListItem(pro[i], pro[i]));
        }
    }
    protected void BindCity()
    {
        DropDownList2.Items.Clear();
        string[] city = w.getSupportCity(DropDownList1.SelectedValue);
        for (int i = 0; i <city.Length; i++)
        {
            DropDownList2.Items.Add(new ListItem(city[i], city[i]));
        }
    }
    protected void BindWether()
    {
        string city = DropDownList2.SelectedValue.Substring(0,2);
      //  Response.Write(city);
        string[] mystr = w.getWeatherbyCityName(city);
        //for (int i = 0; i < mystr.Length; i++)
        //{
        //    Response.Write(mystr[i] + "<br/>");
        //}
        Label1.Text = mystr[1];
        Label2.Text = mystr[6];
        Label3.Text = mystr[5];
        Label4.Text = mystr[4];
        Image1.ImageUrl ="images/a_"+ mystr[8];
    }
    protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
    {
        BindCity();
    }
    protected void Button1_Click(object sender, EventArgs e)
    {

        BindWether();
    }

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
ASP.NET常见模块:在线文件管理模块的设计与开发发布时间:2022-07-10
下一篇:
关于ASP.NET中站点地图sitemap的使用发布时间:2022-07-10
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap