Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can anyone tell me how to show animated progress bar while the data from an Excel sheet to a SQL database table is being transfered?

I have a form in .aspx page. In that form, there is one FileUpload control that uploads an Excel file. While uploading that file and saving it on the server at the same time I'm transferring the data from the Excel sheet to a SQL table. During this transfer, I want to show a ProgressBar and after transferring all data it will be removed automatically..

Is there something I can do to achieve this?

share|improve this question
What about doing this asynchronously? Have a great day :) – Picrofo EGY Nov 2 '12 at 9:24
@Sagar patel Would be nice of you to leave feedback on my answer for improvement or mark as accepted if that worked out for you. – Geekman Nov 17 '12 at 12:31

2 Answers

I would probably submit the form using jQuery's ajaxForm().

Then, onSuccess, call a function that begins further AJAX requests to poll the progress of the upload from your webserver, using JSON. Apart from having a URL to handle the file upload in ASP.NET, you would also need to have another means of returning the progress of some kind of asynchronous worker in JSON format.

Once you get the JSON back, you can then feed this to a jQueryUI progress bar.

For example, in an ASP .NET MVC application, I did something like this:

In the view Upload.aspx, begin the submission

<% using (Html.BeginForm(null, null, FormMethod.Post, new { enctype = "multipart/form-data", id = "UploadForm" }))
   { %>
    <div>
        <input type="file" name="CSVFile" id="CSVFile" />
        <button>Upload</button>
    </div>
<% } %>

        var pb = $('#prog');
        var pbContainer = $('#pbcont');
        var pbPercent = $('#progp');
        var uploadForm = $('#UploadForm');
        var status = $('#StatusDetail');

        uploadForm.ajaxForm({
            iframe: true,
            dataType: 'jason',
            success: function (data) {
                beginProcessing($.parseJSON($(data).text()), '" + Url.Action("UploadStatus", "Upload") + @"', pb, pbContainer, status, pbPercent);
            },
            error: function (xhr, textStatus, error) {
                alert('Error: ' + textStatus);
            }
        });

Controller method to handle the initial upload

Here, I'm creating a unique ID for the upload when it begins, this is so I can identify the upload later on, when I want to find out it's progress.

I'm using a worker class I wrote which handles the processing asynchronously - this is where you would want to asynchronously begin inserting your data into the database.

By the time we reach this controller method, the FileStream should have reached the server, and so we can pass that to our worker to read the stream, parse the CSV and do the database work. Notice that here, I pass the StreamReader to my worker so it can handle all of that.

    // NOTE: The parameter to this action MUST match the ID and Name parameters of the file input in the view;
    // if not, it won't bind.
    [HttpPost]
    public JsonResult Upload(HttpPostedFileBase CSVFile)
    {
        try
        {
            if (CSVFile == null || String.IsNullOrWhiteSpace(CSVFile.FileName))
                return Json("You must provide the path to your CSV file", "text/plain");

            if (!CSVFile.FileName.ToLower().Contains(".csv"))
                return Json("You can only upload CSV files", "text/plain");

            Guid id = worker.BeginImport(dataReporistory, new StreamReader(CSVFile.InputStream));



            //return some JSON
            var json = new 
            {
                ID = id,
                name = CSVFile.FileName,
                size = CSVFile.ContentLength
            };

            return Json(json, "text/plain");
        }
        catch (Exception e)
        {
            return Json(Utilities.DisplayExceptionMessage(e), "text/plain");
        }
    }

Controller method to return progress update

    [HttpPost]
    public JsonResult UploadStatus(Guid id)
    {
        UploadJob job = Worker.GetJobStatus(id);
        return Json(job);
    }

JavaScript in the view to handle the progress bar updating

As you will see above, the ajaxForm.Submit() method will call beginProcessing() from here during the onSuccess event, when the file has finished uploading.

It will also pass the JSON it got from the Upload() controller method, which tells our view the ID of the upload to pass to the update URL when fetching the progress of the job from our worker.

Once beginProcessing is called, it will do some work to setup a progress bar but basically then starts calling updateProgress() on a set timer interval. updateProgress is the function which does all the work of fetching the JSON from the webserver's UploadStatus page.

Once updateProgress gets the JSON update from the webserver, it does some work to feed that into the jQuery UI progress bar that was inserted into a div on the page.

<div id="pbcont">
    <p style="display: inline-block;"><strong>Processing...</strong></p>
    <h3 style="display: inline-block;" id="progp"></h3>
    <div id="prog"></div>
    <br />
    <div id="StatusDetail"></div>
</div>


function beginProcessing(response, url, pb, pbContainer, statusContainer, pbPercent) {
    if (!response.ID) {
        alert('Error: ' + response);
        return;
    }

    pb.progressbar({
        value: 0
    });

    pbContainer
        .css('opacity', 0)
        .css('display', 'block');

    //Set the interval to update process.
    var hasUpdated = false;
    var intervalID = setInterval(function () {
        updateProgress(url + '/' + response.ID, pb, statusContainer, pbPercent, intervalID);
    }, 500);
}


function updateProgress(url, pb, statusContainer, pbPercent, intervalID) {
    //Make an AJAX post to get the current progress from the server

    $.post(url,
    function (job) {
        var newValue = 0;
        var currentValue = pb.progressbar('value');

        //The percentage value retrived from server:
        newValue = (job != null && job.TotalItems != 0 ? (job.ProcessedItems / job.TotalItems * 100) : 0);

        if (newValue > 0)
            hasUpdated = true;

        if (hasUpdated && job == null) {
            newValue = 100;
            statusContainer.html("<strong>Status:</strong> Finished");
            clearInterval(intervalID);
        }

        if (!hasUpdated)
            currentValue = currentValue + 1;

        newValue = Math.max(currentValue, newValue);
        pb.progressbar("value", newValue);
        pbPercent.text(Math.round(newValue, 0) + '%');
        if (job != null)
            statusContainer.html("<strong>Upload:</strong> " + job.Status);
    });
}
share|improve this answer

You can try something like:

1) show ProgressBar on FileLoadButton Click use javascript

2) when server completed load file use inside .aspx.cs ScriptManager.RegisterStartupScript for run javascript for hide ProgressBar

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.