i have an input control of type file.
<input id="FileUpload1" type="file" runat="server" size="35" />
there are four input controls like this and in aspx.cs file i m trying to make an array of these ids..
i have made an array
HtmlInputFile[] fl = new HtmlInputFile[4] { FileUpload1, FileUpload2, FileUpload3, FileUpload4 };
but it gives me an error..how can i get the value of these inputs.