I am using 10 asp:fileUpload control to upload multiple files
Now I want to check on each upload that it has file in it or not?
For that I took an array as
FileUpload uploadarr[] = new FileUpload[10];
but how do I check that it has posted file or not using 10 controls as FileUpload1,FileUpload2,FileUpload3...FileUpload10
HttpPostedFile myFile = FileUpload1.PostedFile;