本文介绍了索引超出范围.必须为非负数,且小于删除行时的值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
protected void rad_grid_ItemDeleted(object sender, GridDeletedEventArgs e)
{
if (e.Exception != null)
{
e.ExceptionHandled = true;
DisplayMessage(true, "customer" + e.Item.OwnerTableView.DataKeyValues[e.Item.ItemIndex]["CustomerID"] + "cannot be deleted:reason is" + e.Exception.Message);
}
else
{
DisplayMessage(false, "customer" + e.Item.OwnerTableView.DataKeyValues[e.Item.ItemIndex]["CustomerID"] + "deleted");
}
}
我正在使用radgrid control
i am using radgrid control
推荐答案
这篇关于索引超出范围.必须为非负数,且小于删除行时的值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!