Wednesday, March 23, 2016

Multiple files upload and formdata using dropzone js

DropzoneJS is an open source library that provides drag and drop files upload with image preview.


Dropzone supports drag and drop functionality for thumbnail image, multiple uploads and progress bar which can be integrated with MVC.

This blog  is an  example of multiple files upload with form data and without form data.We can fetch response from the controller action and we can mold it any form while showing it on client side.Errors can also be Received in  response.

How to install in your application.

Add stylesheet and Jqeury for Dropzone JS
            

            
            
You can also add cdn for stylesheet and .js file from this link :Click Here.
Add two images for display upload files image.

How to use it in application.

Add form tag in your html body and add class dropzone to form tag.
            

How to use dropzone js with form data.

 
First Name
Last Name
Registration Number
 
 

Add this script in your html page.


            

Add action method in you controller.

Add this mehtod in your controller. Dropzone file upload using ajax and pass form parameter in post call. In that call you can get model data and your uploaded files.
            [HttpPost]
            public ActionResult SaveFilesAndData(StudentModel model)
            {
                try
                {
                    HttpFileCollectionBase filesData = Request.Files;//Here you can get multiple files.
                    for (int i = 0; i < filesData.Count; i++)
                    {
                        //This code for save your file in directory
                        HttpPostedFileBase file = Request.Files[i];
                        //Save file content goes here
                        if (file != null && file.ContentLength > 0)
                        {
                            string path = Server.MapPath(@"~/DropjoneImages/");
                            bool isExists = System.IO.Directory.Exists(path);
                            if (!isExists)
                                System.IO.Directory.CreateDirectory(path);
                            file.SaveAs(path + file.FileName);
                        }
                    }
                    return Json(new { success = true, message = "" }, JsonRequestBehavior.AllowGet);
                }
                catch (Exception ex)
                {
                    return Json(new { success = false, message = ex.Message }, JsonRequestBehavior.AllowGet);
                }
            }
            
Note : Dropjonne js is provide others good configuration properties using that you can achive your requirement.
Here i have attached my screen shot for upload file and form data.
Here i have attached screen shot for get data in controller.

Browser Support

  • Chrome 7+
  • Firefox 4+
  • IE 10+
  • Opera 10+(Version 12 for MacOS is disabled because their API is buggy)
  • Safari 6+

6 comments:

  1. How get selected item from Dropdownlist?

    ReplyDelete
  2. I guess I am the only one who came here to share my very own experience. Guess what!? I am using my laptop for almost the past 2 years, but I had no idea of solving some basic issues. I do not know how to Download Cracked Pro Softwares But thankfully, I recently visited a website named vstfull.com
    dropzone Crack
    abbyy-fine-reader Crack
    easybits-magic-desktop

    ReplyDelete
  3. I am very impressed with your post because this post is very beneficial for me and provides a piece of new knowledge to me.
    BlueStacks Crack
    DFX Audio Enhancer Crack
    Volcano Box Crack
    Dropzone Crack
    Final Cut Pro X Crack

    ReplyDelete