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();
        }
  • 相关阅读:
    网络优化改进
    图像识别和卷积神经网路案例的实现
    卷积神经网络和图像识别
    ANA网络分析
    大数阶乘
    HDU 1002 A + B Problem II (大数加法)
    HDU 1232 畅通工程 (并查集)
    HDU 1231 最大连续子序列 (dp)
    HDU 2546 饭卡 (dp)
    HDU 1203 I NEED A OFFER! (dp)
  • 原文地址:https://www.cnblogs.com/bjjjunjie/p/2101977.html
Copyright © 2011-2022 走看看