恩对的要去掉自动生成这个框不燃在运行的时候就多几列.要响应删除按纽就可以在
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow || e.Row.RowType == DataControlRowType.DataRow)
{
LinkButton lb = e.Row.Cells[6].Controls[0] as LinkButton;
lb.Attributes.Add("onclick", "return confirm('是否真的删除?')");
}
}
string empid = GridView1.DataKeys[e.RowIndex].Values[0].ToString();
然后在girdview中属性DataKeyNames="TypeId";这样就可以了根据这ID删除注意的是这个Values[0]等同于这饿里面的键值......取出来的值就是这列的TypeId值