标签:
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(‘你确定要删除所选择商品信息?‘);");
}
}
标签:
原文地址:http://www.cnblogs.com/mingzhu9284/p/4537745.html