Blue Theme Orange Theme Green Theme Red Theme
 
MindFusion's Components
Home | Forums | Videos | Photos | Downloads | Blogs | Interviews | Jobs | Beginners | Training
 | Consulting  
Submit an Article Submit a Blog 
 Login Close
User Id:
Password:
 
Forgot Password
Forgot Username
Why Register
 Jump to
Skip Navigation Links
TechnologyExpand Technology
WebsiteExpand Website
 Resources  
Close
 Our Network  
Close
Search :       Advanced Search »
Home » ASP.NET & Web Forms » Bulk Uploader in ASP.NET 2.0

Bulk Uploader in ASP.NET 2.0

The FileUpLoad control enables you to upload file to the server. It displays a text box control and a browse button that allow users to select a file to upload to the server.

Author Rank:
Total page views :  26589
Total downloads :  1121
   Print Read/Post comments Post a comment  Similar Articles  
   Email to a friend  Bookmark  Author's other articles  
Download Files:
BulkUploader.zip
 
Become a Sponsor

In my previous article I had made use of <INPUT id="fileUpload" type="file" Runat="server" NAME="fileUpload"> to upload file, in asp.net we have new server side control called as "FileUpload control"

The FileUpload control does not automatically save a file to the server after the user selects the file to upload. You must explicitly provide a control or mechanism to allow the user to submit the specified file.

Uploading single file functionality at a time to the server this functionality we have already achieved in the earlier article.

Here I am going to display small code snippet by using which you can upload multiple files at a time.

The idea is you can select files from your folders and keep on adding to listbox and in one shot you can upload all the files I have provided functionalities like "Add", "Remove" & "Upload", technically speaking I am adding to the static arraylist and considering each array element as System.Web.UI.WebControls.FileUpload , while uploading just iterate through each webcontrol and SaveAs file to the specified location.

Note: To upload any of the file in respective folder user need to have permission for writing to the folder so please follow the following steps to prevent from the error.

Set permission to virtual directory by following steps in IIS:

Right Click on virtual directory which you have created for this project. Under directory Tab you will find :

  1. Read.
  2. Log Visits.

Index this resources are marked as checked (enables) in addition to this make:

Write access enabled or checked. -> Click on Apply. -> Click on OK.

Code for uploader.ascx:

<%@ Control Language="C#" AutoEventWireup="true" CodeFile="Uploader.ascx.cs" Inherits="Uploader" %>

<table>

    <tr>

        <td style="width: 163px">

            <span style="font-size: 10pt; font-family: Verdana"><strong>

            Select file to upload:</strong></span></td>

        <td style="width: 324px">

            <asp:FileUpload ID="fUpload" runat="server" />&nbsp;<asp:Button ID="btnAdd" runat="server" Text="Add"

              OnClick="btnAdd_Click" /></td>

    </tr>

    <tr>

        <td style="width: 163px">

        </td>

        <td style="width: 324px">

            <asp:ListBox ID="lstFiles" runat="server" Width="324px"></asp:ListBox>

            </td>

    </tr>

    <tr>

        <td style="width: 163px">

        </td>

        <td style="width: 324px">

            <asp:Button ID="btnRemove" runat="server" Text="Remove" OnClick="btnRemove_Click" />

            &nbsp;<asp:Button ID="btnUpload" runat="server" Text="Upload" OnClick="btnUpload_Click" /></td>

    </tr>

    <tr>

        <td colspan="2">

            <asp:Label ID="lblMessage" runat="server" Font-Names="Verdana" Font-Size="Small"

              ForeColor="Red"></asp:Label></td>

    </tr>

</table> 

Code for uploader.ascx.cs:

//General declerations   

protected static ArrayList arrFiles = new ArrayList(); // has to be static since Adding and then reusing

protected int isUploaded = 0;   

protected string pathToUpload = HttpContext.Current.Server.MapPath("UploadedFiles");

 

protected void Page_Load(object sender, EventArgs e)

{

}

protected void btnAdd_Click(object sender, EventArgs e)

{

    //Functionality to add the item in the list

    //At very first add to the array list & simultanously display in the listbox

    try

    {

        if (Page.IsPostBack)

        {

            arrFiles.Add(fUpload);

            lstFiles.Items.Add(fUpload.PostedFile.FileName);

        }

    }

    catch (Exception ex)

    {

        lblMessage.Text = "An error has occured while adding file"+ex.Message;

    }

}

protected void btnRemove_Click(object sender, EventArgs e)

{

    //Functionality to remove files

    //Veryfirst you have to remove from the arraylist and similarly from the listbox

    if (lstFiles.Items.Count != 0)

    {

        arrFiles.Remove(fUpload);

        lstFiles.Items.Remove(lstFiles.SelectedItem.Text);

    }

}

protected void btnUpload_Click(object sender, EventArgs e)

{

    //Very first check if the files are present to upload or Selected to upload

    if ((lstFiles.Items.Count == 0) && (isUploaded == 0))

    {

        lblMessage.Text = "Please specify file name";

    }

    else

    {

        //Take every element from the arraylist as HTMLInputFile, iterate through

        //each InputFile and upload the files to the specified location           

        foreach (System.Web.UI.WebControls.FileUpload Ipf in arrFiles)

        {

            try

            {

                string strFileName = System.IO.Path.GetFileName(Ipf.PostedFile.FileName);

                Ipf.PostedFile.SaveAs(pathToUpload + "\\" + strFileName);

                isUploaded = isUploaded + 1;                   

            }

            catch(Exception ex)

            {

                lblMessage.Text = "An error has occured while uploading your files:<br>"+ex.Message;

            }

        }

        if (isUploaded == arrFiles.Count)

        {

            lblMessage.Text = "Files uploaded successfully";

        }

        //Empty the arraylist and listbox once the upload process finishes

        arrFiles.Clear();

        lstFiles.Items.Clear();

    }

}

Accessing Code on Default.aspx page:

<%@  Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

<%@ Register TagPrefix="Bulk" TagName="Uploader" Src="Uploader.ascx" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head id="Head1" runat="server">

    <title>Bulk Uploader</title>

</head>

<body>

    <form id="attachme" method="post" enctype="multipart/form-data" runat="server">

        <div>

            <h3>

                Bulk Files Uploader Utility:</h3>

            <Bulk:Uploader runat="server" id="Uploader1">

            </Bulk:Uploader>

        </div>

    </form>

</body>

</html>


Login to add your contents and source code to this article
 About the author
 
Munir Shaikh
Munir is MCP in Microsoft .NET Framework 3.5, Windows Communication Foundation
Appl ication Developmen, software Developer/ project lead with 9 Yrs development experience who works on IT projects mainly for Microsoft and some open source technologies. Most of these projects have been intranet based web applications / sites with SQL/Oracle as back-end. Currently he  is focusing more on Silverlight, WCF & WPF development. He had worked on payment gateway implementation. He is experienced in Insurance, Supply Chain management, Trading, Real-Estate & currently Legacy modernization domain.
Apart from this he has implemented on CMMi L3 for organization and has good understanding of process. He has also involved in consulting activities like Architecture Review, Project Plan, HLD, LLD, Risk Management etc....
Looking for C# Consulting?
C# Consulting is founded in 2002 by the founders of C# Corner. Unlike a traditional consulting company, our consultants are well-known experts in .NET and many of them are MVPs, authors, and trainers. We specialize in Microsoft .NET development and utilize Agile Development and Extreme Programming practices to provide fast pace quick turnaround results. Our software development model is a mix of Agile Development, traditional SDLC, and Waterfall models.
Click here to learn more about C# Consulting.
 
Introducing MaxV - one click. infinite control. Hyper-V Hosting from MaximumASP.
Finally – a virtual platform that delivers next-generation Windows Server 2008 Hyper-V virtualization technology from a managed hosting partner you can truly depend on. Visit www.maximumasp.com/max for a FREE 30 day trial. Hurry offer ends soon. Climb aboard the MaxV platform and take advantage of High Availability, Intelligent Monitoring, Recurrent Backups, and Scalability – with no hassle or hidden fees. As a managed hosting partner focused solely on Microsoft technologies since 2000, MaximumASP is uniquely qualified to provide the superior support that our business is built on. Unparalleled expertise with Microsoft technologies lead to working directly with Microsoft as first to offer IIS 7 and SQL 2008 betas in a hosted environment; partnering in the Go Live Program for Hyper-V; and product co-launches built on WS 2008 with Hyper-V technology.
Dynamic PDF
ceTE software specializes in components for dynamic PDF generation and manipulation. The DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and new content to existing PDF documents from within your applications.
Go.NET
Build custom interactive diagrams, network, workflow editors, flowcharts, or software design tools. Includes many predefined kinds of nodes, links, and basic shapes. Supports layers, scrolling, zooming, selection, drag-and-drop, clipboard, in-place editing, tooltips, grids, printing, overview window, palette. 100% implemented in C# as a managed .NET Control. Document/View/Tool architecture with many properties&events. Optional automatic layout.
Dundas Software
Dundas Chart for .NET is the most advanced .NET charting package available today.  With an extremely complete feature set, elegant architecture and easy implementation, Dundas Chart can quickly add advanced Charting functionality to enhance and transform ASP.NET and Windows Forms applications.  Whether you are implementing charting into internal projects, or building applications for clients, Dundas Chart offers advanced technology and advanced results to get the most out of data.
Clickatell's SMS Gateway
Clickatell's Developer Solutions allow you to SMS enable any website or application via a range of API's. Learn More about our API connections.
Free access to .NET Memory Management video
Everything you need to know about Garbage Collection, Temporary Objects, Fragmentation, Finalization and common causes of memory leaks in .NET. Watch the video here.
Microsoft Visual Studio 2010 Professional
Microsoft Visual Studio 2010 Professional will launch on April 12, but you can beat the rush and secure your copy today by pre-ordering at the affordable estimated retail price of $549 (US). Pre-order now.
Nevron Chart for .NET 2010.1 Now Available
The leading .NET charting control now features PDF, Flash and Silverlight export, visualization of large datasets and more. Deliver true charting functionality to your BI, Scorecard, Presentation or Scientific apps. Download evaluation now.
Developer-Ready ASP.NET 2.0 Web Hosting with 3 MONTHS FREE
Now supporting .NET 3.0 Framework with Windows Workflow Foundation, Windows Communication Foundation (WCF), Windows Presentation Foundation (WPF), windows CardSpace (WCS)! Providing more flexibility for Developers with Web Services Support and a User/Permission Manger. Also supporting MS SQL 2005/2000 with Real-Time Backups, FREE Automated Attach .MDF Tool, FREE SQL Restore and Shrink SQL DB Tools, and SQL
 
   Print Read/Post comments Post a comment  Similar Articles  
   Email to a friend  Bookmark  Author's other articles  
Download Files:
BulkUploader.zip
 
 Post a Feedback, Comment, or Question about this article
Subject:  
Comment:  
Become a Sponsor
 Comments
Cannot access a closed file. by Gary On May 1, 2007
Thank you for your article, I found it very useful. However, whenever I upload any file type, except a text file (which uploads fine), I get a 'Cannot access a closed file.' error. The file is written to the upload location, but it is 0 KB in size. I know it's something simple I'm doing wrong. Any suggestion?
Reply | Email | Delete | Modify | 
Re: Cannot access a closed file. by Munir On May 3, 2007

It's caused by file size limit. You should upload a small file and be confirmed that the upload file are cleared on the server.

To test it, you first upload two 40kb files to server, then, upload a 110kb file to it. Then, you will notice that the error re-produce.

checkout this
http://msdn2.microsoft.com/en-us/library/system.web.ui.webcontrols.fileupload.aspx

Regards,
>>Munnamax

Reply | Email | Delete | Modify | 
Re: Re: Cannot access a closed file. by mahmoud On December 25, 2007
hello , I face the same problem ,but nothing changed after I add this lines in my web.config file can you provide any help for me thanks in advance.
Reply | Email | Delete | Modify | 
Re: Re: Re: Cannot access a closed file. by mahmoud On December 25, 2007
well I got it adding this line to web.cnfig useFullyQualifiedRedirectUrl="true" maxRequestLength="8192" requestLengthDiskThreshold="8192" under the (httpRuntime) tag and changing the "8192" to any large value.
Reply | Email | Delete | Modify | 
Re: Cannot access a closed file. by Subash On July 11, 2007

hi,

I want to save the uploaded file in different location with different name. How can i do it??

Reply | Email | Delete | Modify | 
Re: Re: Cannot access a closed file. by Gary On November 27, 2008
Once the file is uploaded to the web server using the 'asp:FileUpload' object, I copy the file to a new location, rename it, and delete the uploaded file. To do so, I use the 'System.IO.File' class methods: Copy(), Delete(), and/or Move(). In many case, I also process the files (image files) with ImageMagick. ImageMagick provides for copying and renaming as part of the command.
Reply | Email | Delete | Modify | 
multiple uploading by Manivannan On September 20, 2007
How can I upload multiple files in a single upload button?
Reply | Email | Delete | Modify | 
Re: multiple uploading by Munir On September 21, 2007
Hi,
I think unless you add your file to some collection you cannot do the same, first add the file to some collection and then use single upload button.



Regards,
>>Munnamax
Reply | Email | Delete | Modify | 
Re: Re: multiple uploading by Manivannan On September 21, 2007
I want to select the uploaded files by selecting (ctrl+click) and then sent by a single upload button. Is there any source to do that?
Reply | Email | Delete | Modify | 
openFileDialog box by Manivannan On September 24, 2007
How can I create openfile dialog box in asp.net? is there any source?
Reply | Email | Delete | Modify | 
Re: openFileDialog box by Munir On September 26, 2007
Hi,
A web application ofcourse wouldn't have any of the standard OS controls. It's a web application, not a fat client application. The only reason to ever present the user with a "File" dialog box is so they can upload a file. The standard HTML "file input" form element has been around for ages for just that reason.

ASP.NET is bound to have a much more complicated, hard to understand, and pointlessly obscure version of the control.

Ah, here it is: System.Web.UI.HtmlControls.HtmlInputFile.

Simple web searchs for that or for "ASP.NET File Upload" should get you the rest of what you need to know.
or you have to try opening file dialog box
 ' Sets the Dialog Title to Open File
CommonDialog1.DialogTitle = "Open File"

' Sets the File List box to Word documents and Excel documents
CommonDialog1.Filter = "Word Documents (*.doc)|*.doc|Excel Spreadsheets (*.xls)|*.xls"

' Set the default files type to Word Documents
CommonDialog1.FilterIndex = 1

' Sets the flags - File must exist and Hide Read only
CommonDialog1.Flags = cdlOFNFileMustExist + cdlOFNHideReadOnly

' Set dialog box so an error occurs if the dialogbox is cancelled
CommonDialog1.CancelError = True

' Enables error handling to catch cancel error
On Error Resume Next
' display the dialog box
CommonDialog1.ShowOpen
If Err Then
    ' This code runs if the dialog was cancelled
    Msgbox "Dialog Cancelled"
    Exit Sub
End If
' Displays a message box.
Msgbox "You selected " & CommonDialog1.FileName


Regards,
>>Munnamax
Reply | Email | Delete | Modify | 
Awesome by Kalirajan On November 6, 2009
its wonderful and simple code
Reply | Email | Delete | Modify | 

 Hosted by MaximumASP  |  Found a broken link?  |  Contact Us  |  Terms & conditions  |  Privacy Policy  |  Site Map  |  Suggest an Idea  |  Media Kit
Current Version: 5.2009.6.2
 © 2010  contents copyright of their authors. Rest everything copyright Mindcracker. All rights reserved.