Uploading Multiple Files in ASP.NET 2.0
In ASP.NET 2.0, the FileUpload control enables users to upload file from your web pages. The FileUpload control consists of a text box and a browse button. Clicking on the button allow users to select a file on the client and upload it to the server.
Let us start how to upload multiple file on a single button click. Follow these 2 steps
Step 1: Drag and drop multiple (in my case four) FileUpload controls on to the designer.
Step 2: Drop a Button control and rename it to "Upload"
This is the aspx code
This is the aspx code
Comments
http://ctrlcvprogrammer.blogspot.in/