为什么DataGrid 点编辑按钮后,datagrid消失了
private void DataGrid1_EditCommand(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e){
this.DataGrid1.EditItemIndex=-1;
this.DataBind();
}
我的三个DataGrid都出现这个了问题 按了编辑 就消失了 为什么呢 --------------------编程问答-------------------- 3个都消失了?
还是消失了2个?
你看下你的postback里面有没有绑定girdview --------------------编程问答-------------------- 不明白? --------------------编程问答-------------------- this.DataBind(); 去掉
--------------------编程问答-------------------- 就是三个页面都用到DataGrid编辑功能 结果都发生了这个问题 --------------------编程问答-------------------- 首先看清事件 再就是看事件里面的代码。 --------------------编程问答-------------------- mark --------------------编程问答-------------------- 是不是DataBind()了一个空数据啊? --------------------编程问答-------------------- Page_Load里面是否写了
if(!IsPostBack)
{
DataBind();
}
补充:.NET技术 , C#