XmlHttp实现无刷新三联动下拉框

SCRIPT LANGUAGE="JavaScript">
            <!--
                //以XML求取DropDownList2的数据
                function XmlPost2(obj)
                {
                  var svalue = obj.value;
                  var webFileUrl = "?povinceid=" + svalue;
                  var result = "";
                  var xmlHttp = new ActiveXObject("MSXML2.XMLHTTP");
                  xmlHttp.open("POST", webFileUrl, false);
                  xmlHttp.send("");
                  result = xmlHttp.responseText;
                  
                  if(result != "")
                  {
                    document.all("DropDownList2").length=0;
                    var piArray = result.split(",");
                    for(var i=0;i<piArray.length;i++)
                    {
                      var ary1 = piArray[i].toString().split("|");
                      document.all("DropDownList2").options.add(new Option(ary1[1].toString(),ary1[0].toString()));
                    }
                  }
                  else
                  {
                    alert(result);
                  }
                }
                //以XML求取DropDownList3的数据
                function XmlPost3(obj)
                {
                  var svalue = obj.value;
                  var webFileUrl = "?cityid=" + svalue;
                  var result = "";
                  var xmlHttp = new ActiveXObject("MSXML2.XMLHTTP");
                  xmlHttp.open("POST", webFileUrl, false);
                  xmlHttp.send("");
                  result = xmlHttp.responseText;
                  
                  if(result != "")
                  {
                    document.all("DropDownList3").length=0;
                    var piArray = result.split(",");
                    for(var i=0;i<piArray.length;i++)
                    {
                      var ary1 = piArray[i].toString().split("|");
                      document.all("DropDownList3").options.add(new Option(ary1[1].toString(),ary1[0].toString()));
                    }
                  }
                  else
                  {
                    alert(result);
                  }
                }
                function getData()
                {
                    var province=document.getElementById("DropDownList1");
                    var pindex = province.selectedIndex;
                    var pValue = province.options[pindex].value;
                    var pText  = province.options[pindex].text;
                   
                    var city=document.getElementById("DropDownList2");
                    var cindex = city.selectedIndex;
                    var cValue = city.options[cindex].value;
                    var cText  = city.options[cindex].text;
                   
                    var area=document.getElementById("DropDownList3");
                    var aindex = area.selectedIndex;
                    var aValue = area.options[aindex].value;
                    var aText  = area.options[aindex].text;
                   
                    var txt=document.getElementById("TextBox1");                               

                    document.getElementById("<=TextBox1.ClientID>").innerText="省:"+pValue+"|"+pText+"市:"+cValue+"|"+cText+"区:"+aValue+"|"+aText;
                    document.Form1.hidprovince.value=pValue;
                    document.Form1.hidcity.value=cValue;
                    document.Form1.hidarea.value=aValue;
                }
            //-->
            </SCRIPT>
        </form>
    </body>
</HTML>

2.cs代码

public class WebForm1 : System.Web.UI.Page
    {
        protected System.Web.UI.WebControls.DropDownList DropDownList1;
        protected System.Web.UI.WebControls.DropDownList DropDownList2;
        protected System.Web.UI.WebControls.DropDownList DropDownList3;
        protected System.Web.UI.WebControls.TextBox TextBox1;
   
        public static string ConnectionString=System.Configuration .ConfigurationSettings .AppSettings["ConnectionString"];
   
        GetDataSet#region GetDataSet
        public static DataSet GetDataSet(string sql)
        {
            SqlDataAdapter    sda =new SqlDataAdapter(sql,ConnectionString);
            DataSet ds=new DataSet();
            sda.Fill(ds);
            return ds;
        }
        #endregion

        property#region property
        private string provinceid
        {
            get
            {
                if(ViewState["provinceid"]!=null && ViewState["provinceid"].ToString()!="")
                {
                    return ViewState["provinceid"].ToString();
                }
                else
                {
                    if(Request["provinceid"]!=null && Request["provinceid"].ToString()!="")
                    {
                        return Request["provinceid"];
                    }
                    else
                    {
                        return "";
                    }
                }
            }
            set
            {
                ViewState["provinceid"]=value;
            }
        }
        private string cityid
        {
            get
            {
                if(ViewState["cityid"]!=null && ViewState["cityid"].ToString()!="")
                {
                    return ViewState["cityid"].ToString();
                }
                else
                {
                    if(Request["cityid"]!=null && Request["cityid"].ToString()!="")
                    {
                        return Request["cityid"];
                    }
                    else
                    {
                        return "";
                    }
                }
            }
            set
            {
                ViewState["cityid"]=value;
            }
        }
        #endregion

        Page_Load#region Page_Load
        private void Page_Load(object sender, System.EventArgs e)
        {
            if(!this.IsPostBack)
          {
            this.down1_bind();
                this.DropDownList1.Attributes.Add("onchange","XmlPost2(this);");
                this.DropDownList2.Attributes.Add("onchange","XmlPost3(this);");
          }
          if(provinceid != "")
          {
            this.down2_bind(provinceid);
          }
            if(cityid != "")
          {
            this.down3_bind(cityid);
          }
        }
       
        #endregion

        down2_bind#region down2_bind
        private void down2_bind(string id)
        {
          string mystr = "";
          string sql = "select cityID,city from city where father = '" + id + "'";
          DataSet ds = GetDataSet(sql);

          if(ds.Tables[0].Rows.Count != 0)
          {
            for(int i=0;i<ds.Tables[0].Rows.Count;i++)
            {
              mystr += "," + ds.Tables[0].Rows[i][0].ToString() + "|" + ds.Tables[0].Rows[i][1].ToString();
            }
            mystr = mystr.Substring(1);
          }
          this.Response.Write(mystr);
          this.Response.End();
        }
        #endregion

        down3_bind#region down3_bind
        private void down3_bind(string id)
        {
          string mystr = "";
          string sql = "select areaID,area from area where father = '" + id + "'";
          DataSet ds = GetDataSet(sql);

          if(ds.Tables[0].Rows.Count != 0)
          {
            for(int i=0;i<ds.Tables[0].Rows.Count;i++)
            {
              mystr += "," + ds.Tables[0].Rows[i][0].ToString() + "|" + ds.Tables[0].Rows[i][1].ToString();
            }
            mystr = mystr.Substring(1);
          }
          this.Response.Write(mystr);
          this.Response.End();
        }

        #endregion
       
        down1_bind#region down1_bind
        private void down1_bind()
        {
          string sql = "select provinceID,province from province";
          DataSet ds = GetDataSet(sql);
          this.DropDownList1.DataSource = ds;
          this.DropDownList1.DataValueField = "provinceID";
          this.DropDownList1.DataTextField = "province";
          this.DropDownList1.DataBind();         
        }

        #endregion

        Web Form Designer generated code#region Web Form Designer generated code
        override protected void OnInit(EventArgs e)
        {
            //
            // CODEGEN: This call is required by the ASP.NET Web Form Designer.
            //
            InitializeComponent();
            base.OnInit(e);
        }

        /** <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {   
            this.Load += new System.EventHandler(this.Page_Load);

        }
        #endregion
    }

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值