Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 ASP.NET 网页中,我有一个 DataGrid:
为简单起见,假设它只有 2 行和 2 列。
A|B C|D
问题是如何找到用户点击了哪一行。
例如,如果用户单击第 2 行,我希望能够获得 C 和 D 的值。
找到了答案:
您可以使用具有参数 e 作为 DataGridCommandEventArgs 的 DataGrid 的单击事件处理程序。
Sub MYGrid_Click(ByVal Src As Object, ByVal e As DataGridCommandEventArgs)
e 包含有关被点击的行的数据。
例如,要在单击的行中查找第三个单元格的数据,您可以使用以下命令:
Item.Cells(2).Text 它是一个绑定列(假设)