给gridview栏位增加Attributes的tips
今天给好几个gridview的删除栏位,增加个是否删除的小提示,数得我头晕。后面想了下,直接转化模板列,在编辑模板,就可以看到是column的数值了。。
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Cells[7].Attributes.Add("onclick", "javascript:return confirm('你确认删除么?')");
}
}
栏位多了,还真难数,不知道这人咋想的,不把删除放在第一个。