Array of Controls in ASP.NET
-
Hi, I am creating an application on ASP.NET 2.0 & i want to upload mutliple pics on that. I have included around 10 uploader with the same Ids like: uplfile1 uplfile2 uplfile3 . . . . . uplfile10 Now in code I want to perform some action from these controls. I am using a for loop till count that represents how mnay controls are visible. I want to access uplfile1 from loop value. LIKE: for(int i=0;i
-
Hi, I am creating an application on ASP.NET 2.0 & i want to upload mutliple pics on that. I have included around 10 uploader with the same Ids like: uplfile1 uplfile2 uplfile3 . . . . . uplfile10 Now in code I want to perform some action from these controls. I am using a for loop till count that represents how mnay controls are visible. I want to access uplfile1 from loop value. LIKE: for(int i=0;i
IMO, try with
FindControl(...)
method << >>