Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / web / ASP.NET

Update Progress with AJAX UpdatePanel

0.00/5 (No votes)
19 Nov 2009CPOL1 min read 18.7K   210  
This post demonstrates how to create an update progress with the UpdatePanel, similar to the one we can see in GMail.

Introduction

In this post, I will demonstrate how to create an update progress display with the UpdatePanel, similar to the one that we can see in GMail, like the following:

The following key things are to be addressed:

  1. It should be on the top-center of the page.
  2. It should be on top of all the other HTML controls.
  3. When scrolling, it should be placed on a relative position to the current scroll position.

To achieve this, we can use many alternatives, but I would use a simple approach. In addition to the UpdatePanel, I will use <div>, CSS styles, and JavaScript.

Here we go:

  1. Add a div tag within the body element.
    HTML
    <div class="divProg" id="divProg"></div>

    Note that the id and class attributes are necessary.

  2. Add the following CSS class to the web page or the style sheet file. Keep in mind, without position: absolute; z-index: 10; CSS properties, this won’t work as expected.
    CSS
    .divProg
    {
     position: absolute;
     left: 0px;
     top: 0px;
     width: 100px;
     height: 0px;
     z-index: 10;
     border: 1px none #000000;
     visibility: hidden;
     background-color: #FFF1A8;
     font-weight: bold;
     padding: 5px 10px 5px 10px;
    }
  3. Now we want to display the div on the top-center of the screen as well as move its top position relative to the current scroll position. To address this, we will create the following three JavaScript functions. To get the current Y position of scroll:
    JavaScript
    function getScroll_Y() 
    {
            return document.documentElement.scrollTop;  
    }

    To set the current top position of the div:

    JavaScript
    function setDivTop() 
    {
        if (document.getElementById("divProg") != null) {
            theDiv= document.getElementById("divProg");
        }
        else {
            return;
        }
        theDiv.style.top = getScroll_Y() + "px";
    }

    Write a function to toggle the display for the div.

    JavaScript
    function displayDiv(display) 
    {
        if (document.getElementById("divProg") != null) {
            theDiv = document.getElementById("divProg");
        }
        else {
            return;
        }
    
        if (display) {
            var width = document.body.offsetWidth;
            var height = document.body.offsetHeight;
            if (!width) {
                width = window.innerWidth;
                height = window.innerHeight;
    
                if (!width) {
                    width = screen.width;
                    height = screen.height;
                }
            }
            // To center the div, we need to deduct its half of
            // width from half of screen width. So we set div width =100
            // in css, so that deduct by 50
            theDiv.style.left = width / 2 - 50;
            theDiv.style.top = getScroll_Y();
            theDiv.style.height = 25;
            theDiv.innerText = 'Working...';
            theDiv.style.visibility = 'visible';
    
        }
        else {
            theDiv.style.visibility = 'hidden';
        }
    }
  4. Now we want to handle the request start and request end events. We will be able to use the following code with the help of the AJAX Extension library.
    JavaScript
    // Requests Events
    // ============================================
    var prm = Sys.WebForms.PageRequestManager.getInstance();
    
    prm.add_initializeRequest(InitializeRequest);
    prm.add_endRequest(EndRequest);
    
    function InitializeRequest(sender, args) {
        if (prm.get_isInAsyncPostBack()) {
            args.set_cancel(true);
        }
        displayDiv(true);
    }
    function EndRequest(sender, args) {
        if (args.get_error()) {
            alert(args.get_error().message);
            args.set_errorHandled(true);
    
        }
        displayDiv(false);
    }
    
    //===============================================
  5. Set the page's scroll event:
    XML
    <body onscroll="setDivTop()">

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)