我正在尝试从gridviewrow获取行并将其显示在下一页的详细信息视图中。我正在使用Asp.net和VB
答案 0 :(得分:1)
只需迭代集合并检查状态即可。然后,您可以将选定的行放入会话对象或其他内容以传递到下一页。
For Each Row As GridViewRow In MyGrid.Rows
Dim SelectCheck As CheckBox = DirectCast(Row.FindControl("chkSelectForDetail"), CheckBox)
If SelectCheck.Checked
' Add your logic here to save the data or passing on to the detail page.
End If
Next