码迷,mamicode.com
首页 > 其他好文 > 详细

对GridView的某一列行进行操作。。

时间:2015-05-29 11:39:17      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:

 

   protected void GridView1_RowDataBound1(object sender, GridViewRowEventArgs e)
        {
            if (e.Row.RowIndex > -1)
            {
                DropDownList ddlStatus = e.Row.FindControl("dropDown") as DropDownList;
                ddlStatus.Items.Add(new ListItem("Red", "1"));
                ddlStatus.Items[0].Attributes.Add("style", "background-color: red");
                ddlStatus.Items.Add(new ListItem("Green", "2"));
                ddlStatus.Items[1].Attributes.Add("style", "background-color: Green");
                         }
            LinkButton deletebtn = (LinkButton)e.Row.FindControl("delBtn");
            if (deletebtn != null)
            {
                deletebtn.Attributes.Add("onclick", "return confirm(‘你确定要删除所选择商品信息?‘);");
            }
        }

 

对GridView的某一列行进行操作。。

标签:

原文地址:http://www.cnblogs.com/mingzhu9284/p/4537745.html

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