从代码隐藏

时间:2015-12-07 15:44:34

标签: asp.net vb.net datagrid

您好我有两个asp:datagrid x y ,我将数据加载到 datagrid x , 我想跳过 datagrid y 中的行,其中 x 的数据键与 y 的数据键匹配。我有逻辑到位在 datagrid y itemdatabound 事件中,但当datakey与 datagrid x 中的一个匹配时,无法找出跳过整行的方法。有人可以帮我这个吗

1 个答案:

答案 0 :(得分:0)

以下是您需要实施的逻辑: -

Private Sub DataGridView1_RowsAdded(sender As Object, e As DataGridViewRowsAddedEventArgs) Handles DataGridView1.RowsAdded

    If (row need to be removed) then
        DataGridView1.Rows.Remove(DataGridView1.Rows(e.RowIndex))
    End If

End Sub