Hey All i am building an image gallery and i have used a datalist for repeating all the itmes in the gallery, when i want to update an image i have stuck a html:file input within the edit region of the datalist

How can i access the fileInput in the code behind

VB Code:
  1. If Len(Me.FileUpload.Value) <> 0 Then
  2.             objFile.Upload(Me.FileUpload.PostedFile)
  3.             objFile.Resize()
  4.             strFileName = objFile.NewFileName
  5.         Else
  6.             strFileName = "NA.gif"
  7.         End If
When the fileInput control is in the datalist how do i access it ?

thanks in advance

Carl