ARTICLE

AJAX File Upload using JQuery

Posted by Sateesh Arveti Articles | JQuery April 01, 2010
In this article, we will look into file upload using JQuery plug-in. Ajax file upload plug-in allows us to upload files to server.
Reader Level:
Download Files:
 

In this article, we will look into file upload using JQuery plug-in. Ajax file upload plug-in  allows us to upload files to server. I am going to explain it with an example. We will be using custom HTTP handler to upload file onto the server. Create an ASP.NET MVC web application and name it as JQueryFileUpload. Now, add below scripts to site.master:

<script src="../../Scripts/jquery-1.4.1.min.js" type="text/javascript"></script>
<script src="../../Scripts/ajaxupload.js" type="text/javascript"></script>

Now, goto Index view under Home controller and add below html:

<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
    <div id="uploadStatus" style="color: red;"></div>
    <input type="button" id="uploadFile" value="Upload File" />
    <div id="fileList"></div>
</asp:Content>

We are using uploadStatus tag to show status message while uploading/deleting a file. uploadFile button is used to select the file to be uploaded. fileList tag is used to show list of files uploaded. Add a new class to the solution and name it as FileUploadHandler. This class will act as custom HTTP handler for uploading/deleting file. Add below code to the class:

public class FileUploadHandler: IHttpHandler
{
    #region IHttpHandler Members
    public bool IsReusable
    {
        get { return false; }
    }
    public void ProcessRequest(HttpContext context)
    {
        try
        {
            //Uploaded File Deletion
            if (context.Request.QueryString.Count > 0)
            {
                string filePath = @"c:\DownloadedFiles\" + context.Request.QueryString[0].ToString();
                if(File.Exists(filePath))
                File.Delete(filePath);
            }
            //File Upload
            else
            {
                string fileName = Path.GetFileName(context.Request.Files[0].FileName);
                string location = @"c:\DownloadedFiles\" + fileName;
                context.Request.Files[0].SaveAs(location);
            }
        }
        catch
        {
        }
    }
    #endregion
}

We  implemented IHttpHandler and defined code to upload/delete file  in ProcessRequest(). We are deleting a uploaded file by passing its name as parameter. We need to register the HTTP handler by adding below tag to web.config in httpHandlers section for any .upload request. 

<add path="*.upload" verb="*" type="JQueryFileUpload.FileUploadHandler"/>

Now, add below script to site.master for making ajax call for upload/delete of the file.

<script type="text/javascript">
    $(function() {
        //Function to upload file.
        new AjaxUpload('#uploadFile', {
            action: 'FileUploadHandler.upload',
            name: 'upload',
            onComplete: function(file) {
                $('<div><img src="../../Content/delete.jpg" style="width:20px;height:20px" class="delete"/>' + file + '</div>').appendTo('#fileList');
                $('#uploadStatus').html("Upload Done.");
            },
            onSubmit: function(file, ext) {
                if (!(ext && /^(txt|doc|docx|xls|pdf)$/i.test(ext))) {
                    alert('Invalid File Format.');
                    return false;
                }
                $('#uploadStatus').html("Uploading...");
            }
        });
        //Function to delete uploaded file in server.
        $('img').live("click", function() { $('#uploadStatus').html("Deleting"); ; deleteFile($(this)); });
    });
    function deleteFile(objfile) {
        $.ajax({ url: 'FileUploadHandler.upload?del=' + objfile.parent().text(), success: function() { objfile.parent().hide(); } });
        $('#uploadStatus').html("Deleted");
    }
</script>

We are using AjaxUpload function to upload file. We specified action as our HTTP handler and used onComplete and onSubmit events to show status of file upload. We are specifying file formats accepted for uploading in onSubmit event by its file extension. Finally, add below line to Global.asax under RegisterRoutes to skip routing for our HTTP handler:

routes.IgnoreRoute("{file}.upload");

Run the application, use Upload File button for selecting and uploading the file. Click on delete icon to delete corresponding file in the server.

I am ending the things here. I am attaching the source code with it. I hope this article will be helpful for all.

Login to add your contents and source code to this article
post comment
     

Hi , it's not working. it's causing post back

Posted by vinay singh Apr 04, 2013

I download the source but is really not good

Posted by bassam moh Jul 12, 2012

I want Javascript with Html File only.

Posted by BASKER RAJAVEL Mar 14, 2012

Poor code

Posted by Roy Tynan Feb 11, 2011

when i run it on a proper server (iis) it fails to save the file or see any bytes in the context.Request.InputStream (which was to be a way of holding the file before the user saved it at which point it would be saved to the database). am i having this problem because I don't have an MVC app (and haven't been able to add the routes code to my Global.asax file? Thanks again and I'm hoping this can be made to work as it's great.

Posted by Richard Northcott Jan 20, 2011
COMMENT USING
PREMIUM SPONSORS
DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and add new content to existing PDF documents from within your applications.
Get Career Advice from Experts
SPONSORED BY
  • PDF reports have never been easier to create. With our included WYSIWYG Designer, you can layout your reports, set up your data source and let DynamicPDF ReportWriter do the rest.
Join a Chapter