GridView中的编辑问题
我在使用GridView时启用了AutoGenerateEditButton= "True ",并在cs中添加了
public void GridView1_RowEditing(object sender, GridViewEditEventArgs e)
{
GridView1.EditIndex = (int)e.NewEditIndex;
ST_BindGrid();
}
但在页面生成后,点击编辑出现:GridView“GridView1”激发了未处理的事件“RowEditing”,在public void GridView1_RowEditing设置断点,发现程序就没有调用我写的GridView1_RowEditing,请大家帮帮我,我是新手,谢谢!
------解决方案--------------------你页面里没写commomd吧
------解决方案--------------------又解决了
------解决方案--------------------看一下是不是事件丢失了啊?