Chinaunix首页 | 论坛 | 博客
  • 博客访问: 140767
  • 博文数量: 98
  • 博客积分: 10
  • 博客等级: 民兵
  • 技术积分: 1017
  • 用 户 组: 普通用户
  • 注册时间: 2011-06-11 13:22
文章分类

全部博文(98)

文章存档

2015年(25)

2014年(42)

2013年(31)

我的朋友

分类: C#/.net

2013-11-13 16:23:28



       
           
               
                   
                       

                   

           
           
               
                   
                   

               

           
                                                                   
   
                   



后台代码

        protected void BindType()
        {
            for (int i = 0; i < gvMessage.Rows.Count; i++)
            {
                DropDownList drplist = (DropDownList)gvMessage.Rows[i].Cells[1].FindControl("drpType");
                drplist.DataTextField = "DataLabel";
                drplist.DataValueField = "Code";
                drplist.DataSource = 查到的数据源;
                drplist.DataBind();
                drplist.Items.Insert(0, new ListItem("请选择", ""));                 
            }
        }


阅读(460) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~