本文介绍了为什么我必须在删除,更新,取消事件时绑定Gridview的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
protected void GridView1_RowEditing(对象发件人,GridViewEditEventArgs e)
{
GridView1.EditIndex = e.NewEditIndex;
}
我需要上面代码的解释
我知道e.neweditindex使我能够选择行可编辑。
但我的询问是上面的代码在我写下面的方法之前没有正常工作
GetDataFromCache();
将数据源分配给Grid并绑定它,...............为什么我需要绑定它再次,因为它已经绑定之前。
解决方案
protected void GridView1_RowEditing(object sender, GridViewEditEventArgs e) { GridView1.EditIndex = e.NewEditIndex; }
hi , i need an explanation for above code
I know that e.neweditindex enables me to make the selected row editable .
but my inquiry is that above code not working correctly until i write the below method
GetDataFromCache();
which assign datasource to Grid and also bind it ,............... why i need to bind it again as it was already binded before.
解决方案
这篇关于为什么我必须在删除,更新,取消事件时绑定Gridview的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!