Blue Theme Orange Theme Green Theme Red Theme
 
Mindcracker MVP Summit 2012
Home | Forums | Videos | Photos | Blogs | Beginners | Advertise with Us
 | Consulting  
Submit an Article Submit a Blog 
 Jump to
Skip Navigation Links
TechnologyExpand Technology
WebsiteExpand Website
DevExpress UI Controls
Search :       Advanced Search »
Home » ASP.NET and Web » 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 :
Page Views : 8094
Downloads : 119
Rating :
 Rate it
Level : Beginner
   Print Read/Post comments Post a comment  Similar Articles  
   Email to a friend  Bookmark  Author's other articles  
Download Files:
BulkUploader in ASP.NET with vb.zip
 
 
6 Months Free & No Setup Fees ASP.NET Hosting!
Become a Sponsor
 Tag Cloud
 Latest Jobs
More ... 
 Latest Interview Questions
More ... 

In my previous article I had made use the following statement to upload file, in asp.net we have new server side control called as "FileUpload control".

 

<INPUT id="fileUpload" type="file" Runat="server" NAME="fileUpload">

 

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" and "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 files 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="vb" AutoEventWireup="true" CodeFile="Uploader.ascx.vb" 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" />

        <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" />

        <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.vb:

'General declerations    

Protected Shared arrFiles As ArrayList = New ArrayList() ' has to be static since Adding and then reusing

Protected isUploaded As Integer = 0

Protected pathToUpload As String = HttpContext.Current.Server.MapPath("UploadedFiles")

 

Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)

End Sub

Protected Sub btnAdd_Click(ByVal sender As Object, ByVal e As EventArgs)

    '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 Then

            arrFiles.Add(fUpload)

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

        End If

    Catch ex As Exception

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

    End Try

End Sub

Protected Sub btnRemove_Click(ByVal sender As Object, ByVal e As EventArgs)

    'Functionality to remove files

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

    If lstFiles.Items.Count <> 0 Then

        arrFiles.Remove(fUpload)

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

    End If

End Sub

Protected Sub btnUpload_Click(ByVal sender As Object, ByVal e As EventArgs)

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

    If (lstFiles.Items.Count = 0) AndAlso (isUploaded = 0) Then

        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           

        For Each Ipf As System.Web.UI.WebControls.FileUpload In arrFiles

            Try

                Dim strFileName As String = System.IO.Path.GetFileName(Ipf.PostedFile.FileName)

                Ipf.PostedFile.SaveAs(pathToUpload & "\" & strFileName)

                isUploaded = isUploaded + 1

            Catch ex As Exception

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

            End Try

        Next Ipf

        If isUploaded = arrFiles.Count Then

            lblMessage.Text = "Files uploaded successfully"

        End If

        'Empty the arraylist and listbox once the upload process finishes

        arrFiles.Clear()

        lstFiles.Items.Clear()

    End If

End Sub

Accessing Code on Default.aspx page:

<%@  Page Language="vb" AutoEventWireup="true" CodeFile="Default.aspx.vb" 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>

 

NOTE: THIS ARTICLE IS CONVERTED FROM C# TO VB.NET USING A CONVERSION TOOL. ORIGINAL ARTICLE CAN BE FOUND ON C# Corner (http://www.c-sharpcorner.com/). 

Comment Request!
Thank you for reading this post. Please post your feedback, question, or comments about this post Here.
Login to add your contents and source code to this article
 [Top] Rate 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.
Discover the top 5 tips for understanding .NET
Ricky Leeks presents the top 5 tips for understanding .NET Interoperability. Learn more.
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.
ASP.NET 4 Hosting
Get 2 Months Free of ASP.NET Hosting for Only $4.95/month! Receive FREE MS SQL and MySQL Databases Including ASP.NET 4/3.5, MVC 3.0, Silverlight 4, Windows 2008/IIS 7.0 Plus FREE IIS 7 Modules. Host UNLIMITED ASP.NET Web Sites – Click Here!
 
 Post a Feedback, Comment, or Question about this article
Subject:
Comment:
Discover the top 5 tips for understanding .NET Interop
Become a Sponsor
 Comments
Team Foundation Server Hosting
 © 2012  contents copyright of their authors. Rest everything copyright Mindcracker. All rights reserved.