Use dropzone.js with asp.net

0

I want to upload multiple files using dropzone.js and take the paths of the files to store them in my database, but I have found very little information about it or only for MVC, someone who has already used it and could help me.

    
asked by Danitza Ayala 13.09.2016 в 17:25
source

1 answer

1

If you review the article

File upload in ASP.NET MVC using Dropzone JS and HTML5

You will see an example in aspx at the end

HTML: WebFormDropzoneDemo.aspx

Code: WebFormDropzoneDemo.aspx.cs

then use

<script src="Scripts/dropzone/dropzone.min.js"></script>

<script type="text/javascript">
    //File Upload response from the server
    Dropzone.options.dropzoneForm = {
        maxFiles: 2,
        url: "WebFormDropzoneDemo.aspx",
        init: function () { ....

defines the aspx in the url and basically the upload of the file is done in Page_Load

public partial class WebFormDropzoneDemo : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            SaveUploadedFile(Request.Files);
        }
}

is where it takes the Request.Files that sends dropzone

    
answered by 13.09.2016 / 19:31
source