我正在尝试在编辑模式下使用 Gridview 中的下拉列表执行回发。我在获取下拉列表的值时遇到问题。我不能在 RowDatabound 事件中执行此操作。
回发并没有结束写行,我正在进入我想要执行一些操作的 DropDownList7_SelectedIndexChanged 事件,所以它甚至还没有到达那里。我在页面加载事件中有 If Postback。
Protected Sub DropDownList7_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs)
Dim row As GridViewRow = DirectCast(GridView1.Rows.Item(0), GridViewRow)
Dim newNumDDL As DropDownList = row.Cells(0).FindControl("DropDownList7")
Dim newVal As Integer = newNumDDL.SelectedValue
Dim newKey As String = newNumDDL.SelectedItem.ToString
Dim newindex As Integer = newNumDDL.SelectedIndex
我相信问题是 findcontrol 我找不到 DDL,一直没有回来。
谢谢你的帮助。