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();
        }
  • 相关阅读:
    架构师技能图谱 V1.2
    CTO 技能图谱
    物联网的技术构架
    东进交换机
    Ipad2
    ipad2 恢复
    论文建议
    SQL归档
    SQL 会议消费记录统计
    javascript中的方法:类方法(静态方法)对象方法 原型方法
  • 原文地址:https://www.cnblogs.com/bjjjunjie/p/2101977.html
Copyright © 2011-2022 走看看