日期:2014-05-18  浏览次数:20526 次

Gridview如何给CommandField列增加Footer
如题 增加的footer仍然是个按钮,用来添加时候确认用

------解决方案--------------------
protected void GridView1_RowCreated(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.Footer)
{
Button x = new Button();
x.OnClientClick = "return confirm('ok')";
x.Text = "确认删除";
e.Row.Cells[0].Controls.Add(x);
}
}