zoukankan      html  css  js  c++  java
  • 在asp.net中调用天气预报的webService

     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();
        }
  • 相关阅读:
    Google官方关于Android架构中MVP模式的示例续-DataBinding
    值不值
    [译]Godot系列教程五
    [译]Google官方关于Android架构中MVP模式的示例
    遭遇Web print
    如何寻找有价值的点
    充电时间 Go中的数组、切片、map简单示例
    一段良好的程序永远不应该发生panic异常
    居然是Firefox没有抛弃我们
    macOS 升级到了10.12.1
  • 原文地址:https://www.cnblogs.com/bjjjunjie/p/2101977.html
Copyright © 2011-2022 走看看