Hi.
I have a DataGrid, and it works fine, but when I push the
edit button for a common edit command, like this:
private void institutionGrid _EditCommand(ob ject source,
System.Web.UI.W ebControls.Data GridCommandEven tArgs e)
{
anyGrid.EditIte mIndex = e.Item.ItemInde x;
anyGrid.DataBin d();
}
the DataGrid looses all rows, event if the dataset hasn't
changed and is (supposed to be) stored in the session
object and re-read at Page_Load.
I really need some help with this.
Thanks in advance,
Ingeborg
I have a DataGrid, and it works fine, but when I push the
edit button for a common edit command, like this:
private void institutionGrid _EditCommand(ob ject source,
System.Web.UI.W ebControls.Data GridCommandEven tArgs e)
{
anyGrid.EditIte mIndex = e.Item.ItemInde x;
anyGrid.DataBin d();
}
the DataGrid looses all rows, event if the dataset hasn't
changed and is (supposed to be) stored in the session
object and re-read at Page_Load.
I really need some help with this.
Thanks in advance,
Ingeborg
Comment