码迷,mamicode.com
首页 > Web开发 > 详细

asp.net中如何绑定combox下拉框数据(调用存储过程)

时间:2015-12-27 15:59:29      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:

#region 绑定类型(商品类型、仓库名称)

        public void DataType_Bind(int _peoid)

        {

            DataTable dt_goodsname = new DataTable();

            dt_goodsname = stockbll.GetList_goodstype(_peoid).Tables[0];  //获取商品类别

            this.cb_goodstype.Items.Clear();

            foreach (DataRow dr in dt_goodsname.Rows)

            {

                string id = dr["goodstype2_id"].ToString();  //商品类别id

                string title = dr["GOODSTYPE2NAME"].ToString();  //商品类别名称

                this.cb_goodstype.Items.Add(title, id);    //商品类别绑定 

            }

            DataTable dt_stockname = new DataTable();

            dt_stockname = stockbll.GetList_stockname(_peoid).Tables[0];  //获取仓库名称

            this.cb_stock.Items.Clear();

            foreach (DataRow dr in dt_stockname.Rows)

            {

                string stock_id = dr["GENSTORAGEID"].ToString();   // 仓库id

                string stock_title = dr["GENSTORAGENAME"].ToString();  //仓库名称

                this.cb_stock.Items.Add(stock_title, stock_id);   //仓库名称绑定

            }

            this.cb_stock.DataBind();

            this.cb_goodstype.DataBind();

        }

        #endregion

asp.net中如何绑定combox下拉框数据(调用存储过程)

标签:

原文地址:http://www.cnblogs.com/dfxyw/p/5080104.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!