Hola, en un webform, en el Page_Load creo varios campos hidden:
Código vb:
Ver originalFor iFoto=0 to N
foto_ant = New HiddenField()
foto_ant.ID = "ruta_foto_ANT" & iFoto
foto_ant.Value = cnx2.dataReader("ruta").ToString
PanelFotos.Controls.Add(foto_ant)
Next
Después, en el botón Aceptar_Click trato de recuperar esos valores:
Código vb:
Ver originalDim campo_fichero_ant As HiddenField
campo_fichero_ant = CType(FindControl("ruta_foto_ANT" & i.ToString), HiddenField)
If Not campo_fichero_ant Is Nothing Then
'AQUI NO LLEGA NUNCA
End If
Siempre me da como resultado nothing, no encuentra los controles, ¿estoy haciendo algo mal? ¿Se pude usar FindControl con un control creado dinámicamente?
Gracias