我有一个gridview,文本框模板字段在代码后面动态添加,输入值到文本框。在获取文本框值时,它返回空。
下面的代码我试图获得价值。
' ***我进入了#34;你好"执行下面的代码之前,文本框控件中的值。
For Each row As GridViewRow In GridviewChild.Rows
Dim tbSigningGroup As TextBox = DirectCast(row.Cells(4).FindControl("tbSigningGroup" + CStr(row.RowIndex)), TextBox)
If Not tbSigningGroupIs Nothing Then
Dim temp As String = tbSigningGroup.Text ' ****** Returns NULL*******
End If
Next