我正在尝试从 gridviewrow 获取行并将其显示在下一页的详细视图中。我正在使用带有 VB 的 Asp.net
问问题
836 次
1 回答
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
于 2012-08-02T19:12:45.437 回答