Import .csv file to server

3

I am performing a task to import data from a .csv file to the server. I can already import the file all right on the server side, however each file contains about 25,000 records and the user is waiting until the upload is complete. I put a simple load on the page while the user waits. But I would like to know if you have any library that creates a bar with upload status so the user knows how much time remains to finalize the upload.

    
asked by anonymous 16.02.2016 / 20:22

1 answer

0

There are some, like the jQuery File Upload . Here's an article that explains how to implement for ASP.NET MVC .

Dropzone.js is another elegant solution with the same principle .

Some more:

But I also believe you want to process the CSV and report it to the user. This part is explained by Dino Esposito in two parts, here and here , respectively.

    
11.08.2016 / 21:16