I want to use a AsyncFileUpload in a grid view and each record must have a AsyncFileUpload individually. In addition user must be able to upload his/her file for each record. Now how can i access AsyncFileUpload in the grid view and check it if it has a file or not? For common file upload i have used the below cod:
((FileUpload)GridView1.Rows[idx].Cells[0].FindControl("FileUpload1") as FileUpload).HasFile
However, it is not acceptable in this situation. Is there any way to access this Ajax controller in a grid view?