How to add new DataRow into DataTable?

后端 未结 8 1262
我在风中等你
我在风中等你 2021-02-02 06:48

I have a DataGridView binded to a DataTable (DataTable binded to database). I need to add a DataRow to the DataTable

8条回答
  •  走了就别回头了
    2021-02-02 07:03

        GRV.DataSource = Class1.DataTable;
                GRV.DataBind();
    
    Class1.GRV.Rows[e.RowIndex].Delete();
            GRV.DataSource = Class1.DataTable;
            GRV.DataBind();
    

提交回复
热议问题