首页上一页 1 下一页尾页 1 条记录 1/1页
gridview数据删除问题
发表在ASP.NET图书答疑
2009-04-29
是否精华
是
否
版块置顶:
是
否
我买了asp.net程序开发范例宝典一书,书中的实例065(Ex04_23),选中、编辑、取消、删除一例,我想在删除时能弹出确认对话框是否删除,我看了本书的实例71,是直接删除的,那个有确认,我加到实例065中,没有成功,请指点一下。谢谢
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
((LinkButton)(e.Row.Cells[4].Controls[0])).Attributes.Add("onclick", "return confirm('确定要删除吗?')");
}
}
请问e.Row.Cells[4].这里的4是指要显示的例数吗?
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
((LinkButton)(e.Row.Cells[4].Controls[0])).Attributes.Add("onclick", "return confirm('确定要删除吗?')");
}
}
请问e.Row.Cells[4].这里的4是指要显示的例数吗?