For example
1) A file upload control is available already
2) If the user clicks on (+) button a new fil upload control is added dynamically.
3) If the user clicls (-) button the newly added file upload control will be removed.
4) In this way if the user clicks on the upload button all the files must be uploaded together to a folder
How this is possible pls help me
vijayPosted May 25, 2014, 4:19 AM
Refer the below link to add fileupload control using add and remove button
http://vdsite.com/Articles/169/How-to-create-dynamic-fileupload-control-on-click-add-buton-in-Asp.net
vishal sutharPosted May 24, 2014, 2:44 AM
For Add :-
FileUpload fl = new FileUpload();
Panel1.Controls.add(fl);
For Remove
Panel1.Controls.RemoveAt(index);
For get FileUpload Values