asp.net:指定的参数已超出有效值的范围。

if (e.Row.RowState == DataControlRowState.Normal || e.Row.RowState == DataControlRowState.Alternate)
{
((LinkButton)e.Row.Cells[6].Controls[0]).Attributes.Add("onclick", "javascript:return confirm('你确认要删除:\"" + e.Row.Cells[1].Text + "\"吗?')");
}
GridView数据删除时弹出对话框确认,但运行时出现异常:
指定的参数已超出有效值的范围。
参数名: index
请高手帮忙...
最新回答
汐水溪西惝

2024-10-31 09:46:44

看看程序中的两个Cells[]里面的索引是不是对的 .多半是这里搞错了.GridView 第一列的索引是0 然后依次增加.